summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
...
* Tidy up long linesNed Batchelder2009-10-244-20/+41
|
* Compatibility with Python 2.3Ned Batchelder2009-10-231-1/+1
|
* Properly shift multiline references to the first line of the statement. ↵Ned Batchelder2009-10-232-24/+38
| | | | This code is sloppy, I just want it to work first.
* Another line of logging.Ned Batchelder2009-10-231-0/+1
|
* More complexity in figuring out where finally clauses might go.Ned Batchelder2009-10-211-5/+18
|
* More exception flow testing. This stuff is kind of involved...Ned Batchelder2009-10-203-7/+21
|
* Start testing exceptions with arc measurements.Ned Batchelder2009-10-192-2/+26
|
* Correct handling of breaks and continues.Ned Batchelder2009-10-162-21/+40
|
* Ad-hoc discovery of opcodes that need to be parsed. BREAK_LOOP is implicit? ↵Ned Batchelder2009-10-161-8/+8
| | | | yikes...
* Start unit testing the arc measurement. In arcs, -1 means enter or exit.Ned Batchelder2009-10-164-29/+42
|
* More refactoring of the use of analysis objects.Ned Batchelder2009-10-152-11/+31
|
* Remove left over glop.Ned Batchelder2009-10-151-4/+0
|
* Refactor the analysis results so we aren't passing so many tuples around.Ned Batchelder2009-10-156-59/+74
|
* Tidying upNed Batchelder2009-10-151-4/+4
|
* Incomprehensible text-based drawing of code arcsNed Batchelder2009-10-151-11/+43
|
* Lots of work on parser.py, now we can extract possible arcs from source.Ned Batchelder2009-10-142-147/+233
|
* D'oh: I was finding jumpers to anonymous chunks wrongly, turns out there are ↵Ned Batchelder2009-10-121-4/+7
| | | | lots of multi-jump anonymous chunks.
* Don't write arcs if there are none, and an ad-hoc data viewer.Ned Batchelder2009-10-121-7/+24
|
* Write the arcs to the data file.Ned Batchelder2009-10-122-4/+17
|
* Report lines properly when measuring branches; Use None for the placeholder ↵Ned Batchelder2009-10-122-13/+34
| | | | value throughout.
* Properly initialize the arc bookkeeping.Ned Batchelder2009-10-111-1/+13
|
* Reduce the amount of data translation by having the tracers record data in a ↵Ned Batchelder2009-10-113-54/+52
| | | | form more like it will be consumed. Also should reduce the amount of work the tracers have to do.
* One way to collect arc information..Ned Batchelder2009-10-114-123/+62
|
* Properly separate the line data and the arc data.Ned Batchelder2009-10-103-20/+31
|
* More experiments: looks like anonymous chunks are only jumped to from one place.Ned Batchelder2009-10-101-28/+63
|
* First alpha is a1Ned Batchelder2009-10-101-1/+1
|
* Need this tooNed Batchelder2009-10-101-0/+81
|
* Continued hacking on branch coverage.Ned Batchelder2009-10-102-48/+169
|
* Much more ad-hoc goodness.Ned Batchelder2009-10-071-7/+80
|
* Mark most of these methods as private.Ned Batchelder2009-10-071-15/+15
|
* Basic plumbing for a --branch option.Ned Batchelder2009-10-074-4/+21
|
* Bump the version number to 3.2aNed Batchelder2009-10-071-1/+1
|
* Use xrange on py2k and range on py3kNed Batchelder2009-10-051-0/+7
|
* Update all the metadata for version 3.1Ned Batchelder2009-10-041-1/+1
|
* Help should focus on the new command syntax but also have a way to get help ↵Ned Batchelder2009-10-041-7/+11
| | | | on the old.
* Last clean up on the egg-reading code. Fixes issue #25.Ned Batchelder2009-09-301-9/+12
|
* Make egg source reading work on py2k and py3k, though i don't like it much...Ned Batchelder2009-09-302-5/+7
|
* Working toward reading source from eggs, but this isn't right on Py3k yet.Ned Batchelder2009-09-293-6/+20
|
* Scooch the versionNed Batchelder2009-09-291-1/+1
|
* Linux and Mac put a newline in the sys.version string. Odd.Ned Batchelder2009-09-271-1/+1
|
* Added a 'coverage debug' command to get internal information for diagnosing ↵Ned Batchelder2009-09-274-7/+78
| | | | problems. Also, all commands should at least take -h.
* HTML report includes non-relative code units also. Fixes issue #11, though ↵Ned Batchelder2009-09-262-2/+3
| | | | the paths displayed in the HTML are kind of heinous.
* Fix some spacing in the footer of the HTML report.Ned Batchelder2009-09-261-1/+6
|
* lint cleanupNed Batchelder2009-09-261-1/+1
|
* XML report: now validates against the Cobertura dtd.Ned Batchelder2009-09-261-37/+53
|
* XML command writes to coverage.xml, and takes a -o argument to write it ↵Ned Batchelder2009-09-252-1/+13
| | | | somewhere else.
* One more place to indirect the url.Ned Batchelder2009-09-251-1/+1
|
* Put __version__ back in the main file, and also put the URL in only one ↵Ned Batchelder2009-09-255-12/+8
| | | | place, use it everywhere.
* Clean up the XML code, use common reporting infrastructure, add a Generator ↵Ned Batchelder2009-09-251-71/+74
| | | | comment, don't output packages that don't really exist.
* Don't use -o for 'omit' in the new command syntax: it should mean output.Ned Batchelder2009-09-241-2/+8
|