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: 1.1 MB): HTTPS / SSH
$ hg clone http://bitbucket.org/ned/coveragepy/
commit 700: e448feedf77b
parent 699: 0e1d82a28701
Clean up the lst += string stuff, whereby string being iterable means each char is added as an element of the list. Also, apply the 'join is better than append' rule to other places, where, alas, it doesn't seem to have the same magic effect. defaulttip
Ned Batchelder / ned
2 days ago
View at rev
coverage.py /
filename size last modified message
coverage  
doc  
lab  
test  
.hgignore 295 B 4 months ago Make egg source reading work on py2k and py3k, though i don'…
.hgtags 1.1 KB 2 months ago Coverage 3.2
.pylintrc 9.9 KB 4 months ago I don't mind if modules get really long.
AUTHORS.txt 462 B 2 months ago Added an AUTHORS.txt file.
CHANGES.txt 12.9 KB 5 weeks ago Parallel mode can be set from the .coveragerc file.
MANIFEST.in 253 B 2 months ago Added an AUTHORS.txt file.
Makefile 2.1 KB 2 months ago A PEP8 target, but its output is pretty annoying...
README.txt 417 B 2 months ago Clean-ups
TODO.txt 7.3 KB 13 days ago A random idea I happened across.
allcoverage.cmd 477 B 4 weeks ago Use loops instead of all that repetition.
allkits.cmd 331 B 4 weeks ago Use loops instead of all that repetition.
alltests.cmd 608 B 4 weeks ago Use loops instead of all that repetition.
checkeol.py 1.1 KB 2 months ago Clean up HTML files.
covcov.ini 367 B 5 weeks ago Parallel mode can be set from the .coveragerc file.
distribute_setup.py 14.3 KB 2 months ago Use Distribute for 3.x, stick with setuptools for 2.x
ez_setup.py 9.5 KB 11 months ago Initial coverage.py 3.0 beta 1
howto.txt 1.9 KB 4 weeks ago Python 2.7 has forced me to re-discover all the tweaks I…
mock.py 8.2 KB 5 months ago The best way to get py3k support: same source runs on both,…
setup.py 2.5 KB 2 months ago version_info is a nicer way to check Python versions than…

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