summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* A fullcoverage tracer that works. Events are stashed, then replayed when ↵Ned Batchelder2011-08-086-13/+69
| | | | coverage is started.
* An enormous hack to try to get stdlib measurement from the very beginning of ↵Ned Batchelder2011-08-072-1/+59
| | | | the process.
* You can include files in the Python installation, and they will be measured.Ned Batchelder2011-08-033-11/+36
|
* Fix whitespaceNed Batchelder2011-08-032-2/+2
|
* Merged in bignose/coveragepy-debian (pull request #2)Ned Batchelder2011-08-031-1/+4
|\
| * Refactor handling of static report files to a separate function.Ben Finney2011-07-271-1/+4
| |\
| | * Refactor handling of static report files to a separate function.Ben Finney2011-07-271-1/+4
| | |
* | | Fix the CHANGES mergeNed Batchelder2011-08-021-2/+3
| | |
* | | Automated merge with ssh://bitbucket.org/ned/coveragepyNed Batchelder2011-08-027-158/+484
|\ \ \ | |/ / |/| |
| * | Split out and improve the ad-hoc parsing and disassembly toolNed Batchelder2011-08-023-155/+442
| | |
| * | The number of missed branches reported on the HTML summary page didn't match ↵Ned Batchelder2011-08-023-1/+39
| | | | | | | | | | | | the number on the file page.
| * | Shorten a lineNed Batchelder2011-08-021-2/+3
| | |
* | | for-else constructs are handled properly, avoiding bogus partial branch ↵Ned Batchelder2011-07-044-14/+19
|/ / | | | | | | warnings. Fixes issue #122. Bonus irony: this also makes while 1 loops automatically understood better too.
* | A test and a fix for issue #122, maybe?Ned Batchelder2011-07-042-1/+16
| |
* | 2.7's unittest is more helpful with long messages.Ned Batchelder2011-07-041-0/+3
| |
* | Bump the version numberNed Batchelder2011-07-042-1/+6
| |
* | Add some comments.Ned Batchelder2011-07-041-0/+9
| |
* | Coverage 3.5Ned Batchelder2011-06-291-0/+1
|/
* Latest sample HTML reportcoverage-3.5Ned Batchelder2011-06-2917-97/+1200
|
* Bump version number to 3.5Ned Batchelder2011-06-297-12/+17
|
* Write this down for next time.Ned Batchelder2011-06-271-0/+5
|
* Update the gold files for HTML since the index file now has keyboard help.Ned Batchelder2011-06-269-0/+150
|
* cleanerNed Batchelder2011-06-261-1/+1
|
* HTML report hotkeys work differently if the current chunk is off-screen. A ↵Ned Batchelder2011-06-263-12/+167
| | | | chunk on-screen will be selected next.
* Scroll-to-top needs the Chrome fix also.Ned Batchelder2011-06-231-1/+1
|
* Some jslint cleanupsNed Batchelder2011-06-231-5/+4
|
* Chrome fixes: transparent colors are not 'transparent', and scrolling html ↵Ned Batchelder2011-06-231-4/+10
| | | | doesn't work, but scrolling body does.
* Un-tabNed Batchelder2011-06-231-9/+9
|
* Latest qunit code, seems to fix the crazy scrolling behavior in qunit ↵Ned Batchelder2011-06-232-83/+99
| | | | results page.
* Tidy upNed Batchelder2011-06-053-6/+6
|
* Created an announcement list.Ned Batchelder2011-06-052-1/+7
|
* Coverage 3.5b1Ned Batchelder2011-06-051-0/+1
|
* Last fiddles for 3.5b1coverage-3.5b1Ned Batchelder2011-06-054-6/+7
|
* Add a keyboard help panel to the index page.Ned Batchelder2011-06-053-0/+27
|
* Remove the twistie from the keyboard icon.Ned Batchelder2011-06-052-0/+0
|
* Add some beta-specific stuff to the home page.Ned Batchelder2011-06-054-14/+48
|
* It's happening today.Ned Batchelder2011-06-051-2/+2
|
* Bump version numbers for 3.5b1Ned Batchelder2011-06-046-8/+15
|
* Update the docs for 3.5 changes.Ned Batchelder2011-06-046-24/+64
|
* Minor tweak to a warning.Ned Batchelder2011-06-042-2/+2
|
* Fix a test involving optimized-away constant if statements, and add a test ↵Ned Batchelder2011-06-032-1/+16
| | | | about them.
* Move some test modules to keep them out of pylint's hair.Ned Batchelder2011-06-019-4/+8
| | | | | | | | | | --HG-- rename : test/othermods/__init__.py => test/moremodules/othermods/__init__.py rename : test/othermods/othera.py => test/moremodules/othermods/othera.py rename : test/othermods/otherb.py => test/moremodules/othermods/otherb.py rename : test/othermods/sub/__init__.py => test/moremodules/othermods/sub/__init__.py rename : test/othermods/sub/osa.py => test/moremodules/othermods/sub/osa.py rename : test/othermods/sub/osb.py => test/moremodules/othermods/sub/osb.py
* Remove a bunch of warnings from pylint.Ned Batchelder2011-05-312-3/+7
|
* Better handling of the partial-branch exclusion regexes. Finishes issue #113.Ned Batchelder2011-05-3112-65/+400
|
* Automated merge with ssh://bitbucket.org/ned/coveragepyNed Batchelder2011-05-312-6/+8
|\
| * Minor cleanupsNed Batchelder2011-05-282-8/+11
| |
* | Start getting docs ready for 3.5b1Ned Batchelder2011-05-314-7/+93
|/
* The right way to communicate with a subprocess.Ned Batchelder2011-05-251-2/+2
|
* The current directory auto-inserted into sys.path is now absolute, to better ↵Ned Batchelder2011-05-213-1/+12
| | | | mimic Python execution.
* WIP for partial branch exclusion. #113Ned Batchelder2011-05-177-23/+103
|