I'm using Coverage to measure the code coverage of my tests, which outputs XML / HTML coverage statistics by file.
Is there a way to output the results by python module instead? For example:
- module a - 70%
- module a.b - 80%
- module a.c - 60%
- module b - 90%