Currently have a project configured to run coverage via Django\'s manage command like so:
./manage.py test --with-coverage --cover-package=notify --cover-bra
I've managed to get this working including a
import coverage
on top of my manage.py file (I'm using Flask instead but having the very same issue)
My problem is that it works from console but Jenkins is not aware of it and keeps on saying that those imports are out of the tests...
Any idea?