Django test coverage vs code coverage
since you use django-nose you have two options on how to run coverage. The first was already pointed out by DaveB: coverage run ./manage.py test myapp The above actually runs coverage which then monitors all code executed by the test command. But then, there is also a nose coverage plugin included by default in the … Read more