We use Hudson and coverage.py to report code coverage for our test suite. Hudson breaks the cover into:
- packages
- files
- Classes
- the lines
- conditional
Coverage.py only reports coverage of files executed / imported during tests, and therefore it seems that it does not notice any files not executed during tests. Is there ever an instance where files will not report 100% coverage?
source
share