summaryrefslogtreecommitdiff
path: root/coverage/annotate.py
Commit message (Collapse)AuthorAgeFilesLines
* Continued refactoring of CodeUnitNed Batchelder2014-05-181-1/+1
|
* Modernize annotate.pyNed Batchelder2014-05-181-43/+35
|
* Include all files when annotating, not just relative ones. #57Ned Batchelder2014-05-181-3/+0
|
* Merged 4.0 to defaultNed Batchelder2013-12-131-3/+3
|\
| * Use sets as much as possible to speed HTML reports. Seems to be a 10% speedup.Ned Batchelder2013-10-231-3/+4
|/
* Refactor reporters so the config is part of construction, and is then ↵Ned Batchelder2012-04-191-4/+4
| | | | available everywhere.
* Pass config objects around to limit the sprawl of argument lists.Ned Batchelder2010-09-021-2/+2
|
* Omit and include are now filename patterns rather than prefixes. BACKWARD ↵Ned Batchelder2010-05-231-6/+2
| | | | INCOMPATIBLE change.
* Format the code to pylint's liking, and fix up the docstrings for omit and ↵Ned Batchelder2010-05-151-7/+9
| | | | include.
* Change 'requires' to 'include'.Ned Batchelder2010-05-151-4/+4
|
* add a --require option to specify directories which are required to be at ↵Zooko Ofsimplegeo2010-04-191-3/+9
| | | | | | the beginning of the path for any file that is going to be included in code coverage make the --omit and --require options apply to code coverage generation as well as to reporting; This speeds up tests from 6 seconds to 1 second on my system, as well as making the resulting .coverage db include *only* the code that I care about, which helps with my code coverage progression/regression tool.
* Massive eol whitespace clean-up.Ned Batchelder2009-12-021-9/+9
|
* Refactor the analysis results so we aren't passing so many tuples around.Ned Batchelder2009-10-151-1/+5
|
* HTML report includes non-relative code units also. Fixes issue #11, though ↵Ned Batchelder2009-09-261-0/+3
| | | | the paths displayed in the HTML are kind of heinous.
* Add some excluded lines to the annotation tests, and write some docstrings ↵Ned Batchelder2009-05-131-0/+22
| | | | for annotate.py
* The name of the project is Coverage, not coverage.py.Ned Batchelder2009-04-301-1/+1
|
* HTML reporting, phase 0.Ned Batchelder2009-04-201-19/+3
|
* Line length < 80.Ned Batchelder2009-04-191-3/+3
|
* Annotated files are only created for source files relative to the current ↵Ned Batchelder2009-04-191-12/+20
| | | | directory. When writing to a separate file, annotation file names include the directory hierarchy flattened, so that same-named files won't collide.
* Remove debugging trace.Ned Batchelder2009-04-181-1/+0
|
* More annotate tests, but something is amiss.Ned Batchelder2009-04-181-0/+3
|
* No need for coverage.analysis to return the filename, it's a property on the ↵Ned Batchelder2009-03-131-2/+2
| | | | CodeUnit passed in.
* Start moving common reporter functionality into Reporter.Ned Batchelder2009-03-131-7/+6
|
* Refactor the annotate code into annotate.pyNed Batchelder2009-03-131-0/+75