summaryrefslogtreecommitdiff
path: root/coverage/summary.py
Commit message (Collapse)AuthorAgeFilesLines
...
* 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. --HG-- extra : transplant_source : %1F.4%81%E8%DA%0B%D0%D5%9D%89%DE%E1vY%E6%CD%1A%EB%C9
* Reports now emphasize missed lines over executed lines, since those are more ↵Ned Batchelder2010-03-131-6/+6
| | | | helpful for directing developers to improved test coverage.
* It helps if you exclude the proper pragma comment.Ned Batchelder2009-12-201-1/+1
|
* Massive eol whitespace clean-up.Ned Batchelder2009-12-021-3/+3
|
* Added branch stats to results, and the summary report includes them.Ned Batchelder2009-11-081-15/+23
|
* Make the naming of Results attributes more consistent.Ned Batchelder2009-11-031-3/+4
|
* Factor out Analysis and Numbers into their own file: imports were getting ↵Ned Batchelder2009-11-021-1/+1
| | | | circular.
* Some lint cleanupNed Batchelder2009-11-021-2/+7
|
* A Numbers class to handle the interrelationships of counts and percentages, ↵Ned Batchelder2009-11-021-16/+7
| | | | including in rolled-up presentations.
* Commonalize the computation of total coverage percentage for a file.Ned Batchelder2009-10-241-4/+1
|
* Refactor the analysis results so we aren't passing so many tuples around.Ned Batchelder2009-10-151-4/+4
|
* Print reporting error message so that it fits better.Ned Batchelder2009-05-261-1/+1
|
* coverage._analyze is a non-public function.Ned Batchelder2009-05-171-1/+1
|
* When printing exceptions in a report, just use the name of the exception.Ned Batchelder2009-05-171-1/+1
|
* How quickly can I fix, re-break, and re-fix a bug?Ned Batchelder2009-05-111-1/+1
|
* Remove some lambdasNed Batchelder2009-05-111-1/+1
|
* Reporting on nothing is OK.Ned Batchelder2009-05-111-1/+1
|
* No need for coverage.analysis to return the filename, it's a property on the ↵Ned Batchelder2009-03-131-1/+1
| | | | CodeUnit passed in.
* Start moving common reporter functionality into Reporter.Ned Batchelder2009-03-131-11/+18
|
* Use write instead of printNed Batchelder2009-03-131-11/+12
|
* Refactor the annotate code into annotate.pyNed Batchelder2009-03-131-4/+4
|
* Refactor the reporting function into the SummaryReporter class.Ned Batchelder2009-03-121-0/+66