Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marechj/nosenodocstrings
A small nosetests plugin that prevents nosetests from displaying docstrings instead of function names in verbosity mode (-v)
https://github.com/marechj/nosenodocstrings
Last synced: 17 days ago
JSON representation
A small nosetests plugin that prevents nosetests from displaying docstrings instead of function names in verbosity mode (-v)
- Host: GitHub
- URL: https://github.com/marechj/nosenodocstrings
- Owner: MarechJ
- Created: 2015-08-12T14:15:25.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-12T19:25:45.000Z (over 9 years ago)
- Last Synced: 2024-10-16T17:59:57.034Z (2 months ago)
- Language: Python
- Homepage:
- Size: 133 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nosenodocstrings
A small plugin that prevents nosetests from displaying docstrings instead of function names in verbosity mode (-v)## Install
```bash
python setup.py install
``````bash
python3 setup.py install
```Works with python3 and python2
## Usage
```bash
nosetests -v --with-nodocstrings
``````bash
nosetests3 -v --with-nodocstrings
```## Notes
It will work only with functions.
It should be easy enough to make it work with classes and methods as well.The code is kind of a 'workaround', but it does the work for now.
Enjoy.