I have just started writing some unit tests for a python project I have using unittest and coverage. I\'m only currently testing a small proportion, bu
unittest
coverage
Add --source=. to the coverage run line. It will both limit the focus to the current directory, and will search for .py files that weren't run at all.
--source=.
.py