I am testing a Django 1.6 application and I need some guidance using django-nose
and coverage
. Our Django app has the following structure:
manage.py
requirements.txt
/appname
/apps
/app1
/app2
/app3
Our top appname
directory has an apps
directory which contains all of our Django apps. When I test the full application I receive huge coverage output of every single package/module inside the individual apps. However, I would like to group the coverage results (statements, misses, coverage %) at the app level, not at the individual file level.
Can I do this?
Here are my relevant requirements:
coverage==3.6
django-nose==1.3
Django==1.6.10
nose==1.3.0