Tests
Hermine uses Django’s default test framework, unittest.
Running the tests
To run the existing tests:
cd hermine
python manage.py test
Coverage
To calculate the coverage of the existing tests:
coverage run manage.py test
coverage html
This will create a htmlcov/index.html
report that you can read in your browser.