We do coverage reports with the famous and possible the only solution in python world i.e. coverage.py
Now,
What we acheive with coverage.py is this :

Where as what we could achieve with ruby-rails is :

So, my question is how do you get more detailed coverage reports with coverage.py ?
[ Or any other tool in the python django world ]
Note:
coverage run manage.py test --settings=project.test_settings- Generate the report by
coverage html - Should / Can I pass in extra parameters to
coveragewhile generating report ?