ned / coverage.py (http://nedbatchelder.com/code/coverage)

Coverage.py measures Python code coverage, typically during test execution. Kits are at PyPI: http://pypi.python.org/pypi/coverage/.

Clone this repository (size: 2.3 MB): HTTPS / SSH
$ hg clone http://bitbucket.org/ned/coveragepy/
commit 150: 79dd373074de
parent 149: e12cd8deddf9
child 151: 5d459120f5a8
Python stdlib is now not measured by default. If needed, turn it on with the -L switch. defaultcoverage-3.0b2
Ned Batchelder / ned
11 months ago

 NB: This is not the latest revision. For the latest view, go to tip.

View at rev
coverage.py /
filename size last modified message
coverage  
doc  
lab  
test  
.hgignore 246 B 13 months ago Ignore .pyd files, they are built from source.
.hgtags 56 B 13 months ago Added tag coverage-3.0b1 for changeset 4105a4de000e
.pylintrc 9.6 KB 11 months ago Line length < 80.
CHANGES.txt 6.2 KB 11 months ago Python stdlib is now not measured by default. If needed,…
MANIFEST.in 199 B 12 months ago Forgot to include CHANGES.txt in the kit.
Makefile 1.6 KB 11 months ago Split out the cmdline.py tests.
README.txt 435 B 13 months ago Tweak the description.
TODO.txt 4.8 KB 11 months ago Removed recursive nonsense; docstring for exclude()
allkits.cmd 388 B 13 months ago Initial coverage.py 3.0 beta 1
alltests.cmd 408 B 11 months ago Quieter alltests.cmd
checkeol.py 655 B 13 months ago Initial coverage.py 3.0 beta 1
ez_setup.py 9.5 KB 13 months ago Initial coverage.py 3.0 beta 1
setup.py 1.9 KB 13 months ago Tweak the description.

README

1
2
3
4
5
6
7
8
9
Coverage.py: code coverage testing for Python

Coverage.py measures code coverage, typically during test execution.  It uses
the code analysis tools and tracing hooks provided in the Python standard
library to determine which lines are executable, and which have been executed.

For more information, see http://nedbatchelder.com/code/coverage

Code repo and issue tracking are at http://bitbucket.org/ned/coveragepy