summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
* Use ‘os.path.commonprefix’ to find the “relative directory” at the ↵Ben Finney2010-02-031-2/+4
| | | | start of a path.
* Move some cmdline code to a more logical place.Ned Batchelder2009-12-041-4/+5
|
* Massive eol whitespace clean-up.Ned Batchelder2009-12-0220-332/+336
|
* A --version option for the command line.Ned Batchelder2009-12-011-15/+27
|
* The command help said --branch was HIGHLY EXPERIMENTAL!!Ned Batchelder2009-12-011-1/+1
|
* A little explanation of the partial branch annotations in the HTML report.Ned Batchelder2009-11-302-4/+10
|
* Mark some code as not covered.Ned Batchelder2009-11-301-3/+3
|
* Don't measure mock.py when we measure our coverage.Ned Batchelder2009-11-291-0/+1
|
* Fix some self-measurement problems. Now coverage_coverage.py works again ↵Ned Batchelder2009-11-292-4/+11
| | | | (had to be sure to stop coverage if check_coverage threw an exception).
* A little more detail on how stuff works.Ned Batchelder2009-11-281-0/+7
|
* Doc tweaks.Ned Batchelder2009-11-271-3/+3
|
* Add a little bit of branch information to 'debug data'Ned Batchelder2009-11-271-0/+3
|
* Line lengthsNed Batchelder2009-11-261-3/+5
|
* XML report now includes branch information.Ned Batchelder2009-11-261-13/+22
|
* When reporting, don't fall over if there's no data to report on. Fixes issue ↵Ned Batchelder2009-11-263-6/+14
| | | | #37.
* Move the javascript code for click-to-sort columns into its own file. It ↵Ned Batchelder2009-11-253-65/+70
| | | | helps keep the HTML tests from changing when the code changes. Also, don't compare non-HTML files in the tests.
* Make the first column look sorted by default, and a little clean-up.Ned Batchelder2009-11-251-6/+6
|
* Merged Chris Adams' further improvements to click-to-sort HTML report columns.Ned Batchelder2009-11-251-9/+59
|\
| * Persistent Index SortingChris Adams2009-11-241-9/+59
| | | | | | | | | | | | Now the index page will remember its sort options across page loads, which means you can click on an item, view its report and return without the index resetting to its default order
* | When partial lines are hidden and run lines are shown, then partial lines ↵Ned Batchelder2009-11-243-13/+20
| | | | | | | | are shown as run.
* | Docstrings for lintNed Batchelder2009-11-241-0/+1
| |
* | Don't annotate partial branches with -1, use 'exit' instead.Ned Batchelder2009-11-241-1/+7
|/
* Bump the version number.Ned Batchelder2009-11-241-1/+1
|
* Update CHANGES for 3.2b3Ned Batchelder2009-11-231-0/+1
|
* ByteParser now recognizes synthetic 'return None' blocks and treats them ↵Ned Batchelder2009-11-231-0/+27
| | | | correctly.
* One more fine point of error handling in the C extension.Ned Batchelder2009-11-231-0/+2
|
* Missed some error handling in the C code.Ned Batchelder2009-11-221-3/+19
|
* Fix a memory leak in the C tracer. Thanks to Yann Malet for reporting it.Ned Batchelder2009-11-221-1/+3
|
* Add statistics gathering to help find a problem in the C tracer.Ned Batchelder2009-11-222-7/+94
|
* I don't like accidental pragmas in the code.Ned Batchelder2009-11-211-1/+1
|
* Merged rozza's fixNed Batchelder2009-11-211-2/+4
|\
| * Ensuring that Class definitions exit counts are correct when you use ↵rozza@x103086.gcapmedia.com2009-11-201-2/+4
| | | | | | | | #pragma: no cover for the class
* | In 'debug sys' data, don't call it 'data_file', since it doesn't find out ↵Ned Batchelder2009-11-211-1/+1
| | | | | | | | anything about the file, it's just the path to the file.
* | Don't count branches to excluded code. Tests don't pass yet.Ned Batchelder2009-11-211-1/+6
| |
* | Handle one more bizarro edge case in tokenizing source: I couldn't look at ↵Ned Batchelder2009-11-211-1/+7
| | | | | | | | my own phystokens.py file properly!
* | Turns out <tfoot> is supposed to come before <tbody>. HTML validates again.Ned Batchelder2009-11-211-13/+14
| |
* | There doesn't seem to be a way to raise an exception with an old traceback ↵Ned Batchelder2009-11-211-2/+2
| | | | | | | | that works on both 2.x and 3.x, so lose the traceback.
* | Increase templite test coverage, and use the new branch awesomeness when ↵Ned Batchelder2009-11-211-2/+2
| | | | | | | | coverage testing ourselves.
* | Add nicer exception reporting inside Templite so when a template goes wrong ↵Ned Batchelder2009-11-211-2/+8
| | | | | | | | we have some hope of figuring out why.
* | Denis Otkidach puts a fine point on it.Ned Batchelder2009-11-201-1/+3
| |
* | Polish up the sortable report: indication of sort column and sortabilityNed Batchelder2009-11-203-44/+53
| |
* | Odd indentation, fix it.Ned Batchelder2009-11-201-3/+3
| |
* | Merged Chris Adams' sortable HTML changes.Ned Batchelder2009-11-202-2/+2
|\ \
| * | Bump the version number.Ned Batchelder2009-11-201-1/+1
| |/
| * The --omit option was checking name instead of filename. This is much ↵Ned Batchelder2009-11-191-1/+1
| | | | | | | | better! Fixes #33. Thanks, Danek Duvall
* | Better HTML reportingChris Adams2009-11-193-62/+89
|/ | | | imported patch TweakedReports
* Ignore the branch of an except clause testing its type, since these aren't ↵Ned Batchelder2009-11-171-3/+17
| | | | conceptually branches. Fixes #35.
* Classes shouldn't be marked as branches. Fixes #32.Ned Batchelder2009-11-161-7/+21
|
* Tabs are 8 spaces, as the Python docs dictate. Fixes issue #31.Ned Batchelder2009-11-152-2/+2
|
* More readable commentNed Batchelder2009-11-151-2/+2
|