OLD | NEW |
1 Coverage.py: code coverage testing for Python | 1 Coverage.py: code coverage testing for Python |
2 | 2 |
3 Coverage.py measures code coverage, typically during test execution. It uses | 3 Coverage.py measures code coverage, typically during test execution. It uses |
4 the code analysis tools and tracing hooks provided in the Python standard | 4 the code analysis tools and tracing hooks provided in the Python standard |
5 library to determine which lines are executable, and which have been executed. | 5 library to determine which lines are executable, and which have been executed. |
6 | 6 |
7 For more information, see http://nedbatchelder.com/code/coverage | 7 For more information, see http://nedbatchelder.com/code/coverage |
8 | 8 |
9 Code repo and issue tracking are at http://bitbucket.org/ned/coveragepy | 9 Code repo and issue tracking are at http://bitbucket.org/ned/coveragepy |
OLD | NEW |