summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
* Prevent UnicodeDecodeErrors in html report. #303Ned Batchelder2014-06-111-9/+3
|
* Add detail to the UnicodeDecodeError for #303Ned Batchelder2014-06-091-1/+9
|
* Round fail-under result same as others. Fixed #284.Ned Batchelder2014-06-031-0/+8
|
* Remove debuggingNed Batchelder2014-06-031-1/+0
|
* Fix the new FnmatchMatcher for >100 patternsNed Batchelder2014-06-032-1/+2
|
* Avoid filling the fnmatch cacheNed Batchelder2014-06-022-15/+10
|
* Clean up the merged pull requestNed Batchelder2014-06-011-4/+3
|
* Merged in rdn_/coverage.py (pull request #35)Ned Batchelder2014-06-012-1/+25
|\ | | | | | | Add branch misses to stdout report
| * Fix formatting when no missing lines; improve testsSteve2014-05-262-1/+25
| |
* | Adapt to the full_line_map change in MakoNed Batchelder2014-05-271-2/+6
|/
* Clean up codeunit, as usualNed Batchelder2014-05-201-5/+5
|
* Improved Mako support. Needs Mako tipNed Batchelder2014-05-202-52/+33
|
* Continued refactoring of CodeUnitNed Batchelder2014-05-185-25/+22
|
* Modernize annotate.pyNed Batchelder2014-05-181-43/+35
|
* Include all files when annotating, not just relative ones. #57Ned Batchelder2014-05-181-3/+0
|
* Move shell globbing into cmdline.pyNed Batchelder2014-05-182-12/+16
|
* A bit of refactoring, inching slowly toward nicer CodeUnitsNed Batchelder2014-05-182-18/+22
|
* Avoid a bunch of deprecated functions.Ned Batchelder2014-05-172-7/+35
|
* Remove an unneeded backward function, and move BUILTINS into backwardNed Batchelder2014-05-172-16/+10
|
* Refactor execfile to avoid imp to avoid deprecation warningsNed Batchelder2014-05-162-41/+104
|
* Latest code form 500linesNed Batchelder2014-05-091-50/+85
|
* Refactoring, asymptotically approaching multi-languageNed Batchelder2014-05-044-30/+19
|
* Small cleanupsNed Batchelder2014-05-033-6/+6
|
* Clean up Stan Hu's pull request, and add him to changes and authorsNed Batchelder2014-05-021-5/+3
|
* Merged in stanhu/coverage.py (pull request #32)Ned Batchelder2014-05-021-2/+16
|\ | | | | | | Issue #94: Include the sources element
| * Issue #94: Include the sources elementStan Hu2014-02-031-2/+16
| |
* | Polished-up code from 500linesNed Batchelder2014-04-261-29/+39
| |
* | More refactoring of hacked Mako supportNed Batchelder2014-04-185-111/+105
| |
* | Fix the Mako regexesNed Batchelder2014-03-081-2/+2
| |
* | Hacked-in Mako support.Ned Batchelder2014-03-085-7/+124
| |
* | Start on splitting into different parsers for different languagesNed Batchelder2014-03-062-8/+32
| |
* | Comment spelling and todo bookkeeping.Ned Batchelder2014-03-061-1/+1
| |
* | Clean up the comment on the xmlreport fixChris Rose2014-02-191-5/+4
| |
* | Resolve #285 - precreate the XML report's output directory if it doesChris Rose2014-02-031-0/+8
|/ | | | not exist yet.
* Peter Portante's coroutine support, but it doesn't work yet.Ned Batchelder2014-01-094-4/+46
|
* No need for paren-less exec any more.Ned Batchelder2013-12-142-21/+4
|
* A few last listcomp -> genexp upgrades.Ned Batchelder2013-12-141-3/+3
|
* Merged 4.0 to defaultNed Batchelder2013-12-1310-119/+206
|\
| * Python 2.3, my old nemesis!Ned Batchelder2013-10-271-1/+3
| |
| * More templite fiddling: use locals instead of ctx[] each time.Ned Batchelder2013-10-271-11/+41
| |
| * Turns out we were spinning on Nones a lot in the Hasher.Ned Batchelder2013-10-271-1/+3
| |
| * ByteCodes.__iter__ is expensive, do it once instead of twice.Ned Batchelder2013-10-271-2/+3
| |
| * No point computing branch info if we aren't doing branch coverage.Ned Batchelder2013-10-271-1/+2
| |
| * Cache generate_tokens to speed HTML reports.Ned Batchelder2013-10-262-3/+33
| |
| * Micro optimizations.Ned Batchelder2013-10-261-3/+3
| |
| * Templite now compiles to Python code for speed.Ned Batchelder2013-10-261-92/+102
| |
| * Use sets as much as possible to speed HTML reports. Seems to be a 10% speedup.Ned Batchelder2013-10-236-16/+27
| |
| * Simple timing of commands.Ned Batchelder2013-10-231-1/+5
| |
* | enumerate has a start parameter!Ned Batchelder2013-10-232-4/+3
| |
* | Except clause can now use 'as', no need for lots of sys.exc_infoNed Batchelder2013-10-205-20/+10
| |