summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* add python3/jython compat TODOholger krekel2009-11-251-0/+3
|
* merging/unifying test plugin codeholger krekel2009-11-255-117/+93
| | | | | | | | | | | * coverage/testplugin.py contains common test plugin options and pytest hooks (which don't induce "import py") * coverage/nose_coverage.py contains a basic Nose Plugin * test/test_testplugin.py contains a pytest-functional test and a nose-skeleton one. skipped as appropriate. --HG-- rename : coverage/runner.py => coverage/testplugin.py
* * move pytest_coverage/nose_plugin to become directly importableholger krekel2009-11-254-69/+72
| | | | | | | | | * fixing order of coverage options * pytest: only do coverage-processing if cover-action is defined --HG-- rename : coverage/test_plugins/nose_coverage.py => coverage/nose_coverage.py rename : coverage/test_plugins/pytest_coverage.py => coverage/pytest_coverage.py
* Merging in changes from http://bitbucket.org/ned/coveragepy/rozza@x103086.gcapmedia.com2009-11-206-93/+139
|\
| * Polish up the sortable report: indication of sort column and sortabilityNed Batchelder2009-11-204-45/+57
| |
| * Odd indentation, fix it.Ned Batchelder2009-11-201-3/+3
| |
| * Merged Chris Adams' sortable HTML changes.Ned Batchelder2009-11-203-62/+89
| |\
| | * Better HTML reportingChris Adams2009-11-193-62/+89
| | | | | | | | | | | | imported patch TweakedReports
| * | rozza == Ross LawleyNed Batchelder2009-11-201-1/+2
| | |
| * | Bump the version number.Ned Batchelder2009-11-202-1/+7
| | |
* | | Typorozza@x103086.gcapmedia.com2009-11-201-1/+1
| | |
* | | Adding a CoverageTestWrapper to be used by test runners / plugins.rozza@x103086.gcapmedia.com2009-11-203-0/+318
| | | | | | | | | | | | | | | | | | | | | Added example plugins for pytest and nose Warning: I haven't tested the nose plugin against a test suite Warning: I use a file listing files / paths to omit from code coverage and use regexes to filter them out To ignore that remove the monkey patch..
* | | Moving file filter logic out so it can be monkey patched easilyrozza@x103086.gcapmedia.com2009-11-201-10/+17
| | |
* | | 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
* | Coverage 3.2b2Ned Batchelder2009-11-191-0/+1
| |
* | Polish up CHANGES.coverage-3.2b2Ned Batchelder2009-11-191-7/+9
| |
* | That last change fixed two bugs.Ned Batchelder2009-11-191-2/+3
| |
* | The --omit option was checking name instead of filename. This is much ↵Ned Batchelder2009-11-192-1/+5
|/ | | | better! Fixes #33. Thanks, Danek Duvall
* Trim line lengthsNed Batchelder2009-11-181-2/+3
|
* Dur! This is a better way to indicate how the tests should run.Ned Batchelder2009-11-187-17/+10
|
* Ignore the branch of an except clause testing its type, since these aren't ↵Ned Batchelder2009-11-174-5/+40
| | | | conceptually branches. Fixes #35.
* Classes shouldn't be marked as branches. Fixes #32.Ned Batchelder2009-11-164-9/+62
|
* Tabs are 8 spaces, as the Python docs dictate. Fixes issue #31.Ned Batchelder2009-11-156-12/+37
|
* More readable commentNed Batchelder2009-11-151-2/+2
|
* Avoid some unneeded tempdir creation in tests.Ned Batchelder2009-11-156-25/+52
|
* PaperworkNed Batchelder2009-11-151-1/+4
|
* Fix a problem with syntax coloring continued lines, and refactor for ↵Ned Batchelder2009-11-154-86/+229
| | | | testability, and add tests. Fixes issue #30.
* Bump the version numberNed Batchelder2009-11-122-1/+7
|
* Coverage 3.2b1Ned Batchelder2009-11-101-0/+2
|
* Coverage 3.2b1coverage-3.2b1Ned Batchelder2009-11-101-0/+2
|
* Latest tweaksNed Batchelder2009-11-101-2/+3
|
* Coverage 3.2b1Ned Batchelder2009-11-101-0/+1
|
* Put a teaser for new features in the package docstring.Ned Batchelder2009-11-102-0/+2
|
* Nearing 3.2b1Ned Batchelder2009-11-103-9/+9
|
* Fleshed-out branch documentation.Ned Batchelder2009-11-102-14/+79
|
* Make this test use only new-style commands.Ned Batchelder2009-11-101-1/+1
|
* Some per-instance caching to speed code parsing and analysis.Ned Batchelder2009-11-102-1/+17
|
* Start to document branch coverageNed Batchelder2009-11-092-0/+102
|
* Stuff to do before 3.2 release?Ned Batchelder2009-11-091-0/+3
|
* Keep showing excluded lines by default.Ned Batchelder2009-11-091-1/+1
|
* Annotations on yellow HTML lines with the line numbers not visited.Ned Batchelder2009-11-085-14/+46
|
* Clean up.Ned Batchelder2009-11-086-12/+37
|
* Don't include excluded lines when reporting exit counts.Ned Batchelder2009-11-081-1/+8
|
* Dict literals shouldn't count as many different exits.Ned Batchelder2009-11-085-22/+51
|
* Show branches and executed branches in HTML reports.Ned Batchelder2009-11-081-3/+6
|
* Shouldn't count multiple (-1,x) arcs as branches.Ned Batchelder2009-11-082-2/+6
|
* Added branch stats to results, and the summary report includes them.Ned Batchelder2009-11-084-37/+95
|
* Use the patch from <<issue 23>> to get Cobertura to find source files.Ned Batchelder2009-11-071-1/+2
|
* Make the naming of Results attributes more consistent.Ned Batchelder2009-11-035-24/+28
|
* Touch-ups in an ancient function.Ned Batchelder2009-11-021-3/+2
|