summaryrefslogtreecommitdiff
path: root/coverage/results.py
Commit message (Collapse)AuthorAgeFilesLines
...
| * Fix branch coverage for yield statements. #308 #324Ned Batchelder2015-04-201-0/+3
| | | | | | | | | | | | | | | | | | | | | | Turns out the "call" and "return" trace events are really "start frame" and "end frame". They happen not only when functions are entered and left, but when generators yield and resume. We aren't interested in arcs into and out of yield statements, so the trace functions look more closely to see what's really happening, and record an arc in human-friendly terms. Thanks for Mickie Betz for pushing on this bug, although her code is no longer here. :(
* | Remove every last trace of CodeUnit, and bring me a glass of vodkaNed Batchelder2015-02-221-3/+3
|/
* Start formalizing the FileReporter interface to simplify thingsNed Batchelder2015-01-021-18/+12
|
* Use json for html status file instead of pickle.Ned Batchelder2014-10-271-0/+7
|
* Filtering now computes coverage percentages properly.Ned Batchelder2014-10-221-2/+9
|
* Make the text report branch column match the HTML reportNed Batchelder2014-10-201-2/+3
|
* More plugin re-shapingNed Batchelder2014-10-191-2/+1
|
* Improve branch summarizationNed Batchelder2014-07-081-4/+6
| | | | | It failed completely on more than one file! Removed the Branches label, and no longer report missing branches implied by missing lines.
* Clean up the merged pull requestNed Batchelder2014-06-011-4/+3
|
* Fix formatting when no missing lines; improve testsSteve2014-05-261-1/+3
|
* Add branch misses to stdout reportSteve2014-05-231-0/+14
|
* Continued refactoring of CodeUnitNed Batchelder2014-05-181-5/+1
|
* A bit of refactoring, inching slowly toward nicer CodeUnitsNed Batchelder2014-05-181-3/+1
|
* Small cleanupsNed Batchelder2014-05-031-4/+4
|
* More refactoring of hacked Mako supportNed Batchelder2014-04-181-40/+2
|
* Hacked-in Mako support.Ned Batchelder2014-03-081-1/+2
|
* Start on splitting into different parsers for different languagesNed Batchelder2014-03-061-2/+1
|
* Merged 4.0 to defaultNed Batchelder2013-12-131-22/+21
|\
| * Now I can use collections.defaultdictNed Batchelder2013-10-201-3/+2
| | | | | | | | | | --HG-- branch : 4.0
| * Generator expressons are ok now.Ned Batchelder2013-10-191-8/+8
| | | | | | | | | | --HG-- branch : 4.0
| * Now I can use decorators.Ned Batchelder2013-10-191-10/+10
| | | | | | | | | | --HG-- branch : 4.0
| * Get rid of our backward implementation of set, sorted, reversed, and rpartition.Ned Batchelder2013-10-191-1/+1
| | | | | | | | | | --HG-- branch : 4.0
* | Use sets as much as possible to speed HTML reports. Seems to be a 10% speedup.Ned Batchelder2013-10-231-1/+1
|/
* Properly report .pyw files. #261.Ned Batchelder2013-09-291-8/+40
|
* Messages with filenames are not good as %r, because it doubles the ↵Ned Batchelder2012-11-231-1/+1
| | | | backslashes...
* Branch coverage is computed more accurately, #156.Ned Batchelder2012-11-191-5/+12
|
* Use iitems() to avoid lists of dict items on py2.Ned Batchelder2012-11-161-3/+3
|
* The number of missed branches reported on the HTML summary page didn't match ↵Ned Batchelder2011-08-021-1/+3
| | | | the number on the file page.
* Better handling of the partial-branch exclusion regexes. Finishes issue #113.Ned Batchelder2011-05-311-5/+6
|
* Minor cleanupsNed Batchelder2011-05-281-2/+2
|
* WIP for partial branch exclusion. #113Ned Batchelder2011-05-171-5/+16
|
* Some pylint cleanups.Ned Batchelder2011-02-011-1/+1
|
* Pylint 0.23.0 'deprecated' disable-msg.Ned Batchelder2011-02-011-1/+1
|
* The XML report was missing an attribute Cobertura needed. Fixes #65 and #81.Ned Batchelder2010-09-041-1/+20
|
* New config setting: [report]precision lets you specify the number of digits ↵Ned Batchelder2010-08-241-6/+28
| | | | after the decimal point in coverage percentages. Finishes issue #16.
* Unify formatting of coverage percentages, and don't show zero or 100 as a ↵Ned Batchelder2010-08-221-0/+17
| | | | result of rounding. Fixes #41 and #70.
* Massive eol whitespace clean-up.Ned Batchelder2009-12-021-12/+12
|
* Clean up.Ned Batchelder2009-11-081-3/+5
|
* Dict literals shouldn't count as many different exits.Ned Batchelder2009-11-081-16/+2
|
* Shouldn't count multiple (-1,x) arcs as branches.Ned Batchelder2009-11-081-0/+4
|
* Added branch stats to results, and the summary report includes them.Ned Batchelder2009-11-081-2/+31
|
* Make the naming of Results attributes more consistent.Ned Batchelder2009-11-031-8/+8
|
* Test and refactor Numbers.Ned Batchelder2009-11-021-10/+11
|
* HTML reporting makes use of Numbers to simplify and centralize the code.Ned Batchelder2009-11-021-6/+14
|
* Factor out Analysis and Numbers into their own file: imports were getting ↵Ned Batchelder2009-11-021-0/+145
circular.