Jan Dittberner
d82146987e
- fix headline in index.rst - add release 0.1 in changelog and add two more features - add tests.rst documenting how to run the test suite and how to check test coverage
490 B
490 B
Tests
To run the tests you can just use the manage.py
script:
python manage.py test $
Coverage
To capture test coverage information you can run:
coverage run --branch manage.py test $
To view the coverage data use:
coverage report -m $
The coverage configuration is in .coveragerc
. Add new apps to the source configuration in the [run] section of that configuration file.