Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/avallbona/pytest-checkipdb
Plugin to check if there are ipdb/pdb breakpoints left into our code
https://github.com/avallbona/pytest-checkipdb
breakpoint hacktoberfest ipdb pdb-breakpoints-left pytest-checkipdb
Last synced: 3 months ago
JSON representation
Plugin to check if there are ipdb/pdb breakpoints left into our code
- Host: GitHub
- URL: https://github.com/avallbona/pytest-checkipdb
- Owner: avallbona
- License: mit
- Created: 2020-05-31T20:26:54.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-04T23:53:58.000Z (about 1 year ago)
- Last Synced: 2024-10-12T07:34:05.580Z (3 months ago)
- Topics: breakpoint, hacktoberfest, ipdb, pdb-breakpoints-left, pytest-checkipdb
- Language: Python
- Homepage:
- Size: 42 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# pytest-checkipdb
[![pypi](https://img.shields.io/pypi/v/pytest-checkipdb.svg)](https://pypi.python.org/pypi/pytest-checkipdb/)
[![Downloads](https://pepy.tech/badge/pytest-checkipdb)](https://pepy.tech/project/pytest-checkipdb)
[![See Build Status on Travis CI](https://travis-ci.org/avallbona/pytest-checkipdb.svg?branch=master)](https://travis-ci.org/avallbona/pytest-checkipdb)
[![Hit counter](http://hits.dwyl.com/avallbona/pytest-checkipdb.svg)](http://hits.dwyl.com/avallbona/pytest-checkipdb)
[![Python package](https://github.com/avallbona/pytest-checkipdb/workflows/Python%20package/badge.svg?branch=master)](https://github.com/avallbona/pytest-checkipdb/actions)
[![Python versions](https://img.shields.io/pypi/pyversions/pytest-checkipdb.svg)](https://pypi.org/project/pytest-checkipdb)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/596f719612f54bd0b4e7aa3a9448f8ca)](https://www.codacy.com/manual/avallbona/pytest-checkipdb?utm_source=github.com&utm_medium=referral&utm_content=avallbona/pytest-checkipdb&utm_campaign=Badge_Grade)Plugin to check if there are ipdb/pdb/breakpoint breakpoints left into our code
## Installation
You can install "pytest-checkipdb" via [pip](https://pypi.python.org/pypi/pip/) from [PyPI](https://pypi.python.org/pypi):
```bash
$ pip install pytest-checkipdb
```
## Usage```bash
$ pytest --cipdb
```## Contributing
Contributions are very welcome. Tests can be run with [tox](https://tox.readthedocs.io/en/latest/), please ensure
the coverage at least stays the same before you submit a pull request.## Local development
Install all the python interpreters you need via [pyenv](https://github.com/pyenv/pyenv). E.g.:
```bash
$ pyenv install 3.5.3
$ pyenv install 3.6.3
$ pyenv install 3.7.7
$ pyenv install 3.8.3
```and then make them global with:
```bash
$ pyenv global 3.5.3 3.6.3 3.7.7 3.8.3
```Run the tests
```bash
$ tox
```## License
Distributed under the terms of the [MIT](http://opensource.org/licenses/MIT) license, **pytest-checkipdb** is free and open source software
## Issues
If you encounter any problems, please [file an issue](https://github.com/avallbona/pytest-checkipdb/issues) along with a detailed description.
------
This is a [Pytest](https://github.com/pytest-dev/pytest) plugin was generated with [Cookiecutter](https://github.com/audreyr/cookiecutter) along with [@hackebrot](https://github.com/hackebrot)'s [Cookiecutter-pytest-plugin](https://github.com/pytest-dev/cookiecutter-pytest-plugin) template.