summaryrefslogtreecommitdiff
path: root/coverage/testplugin.py
Commit message (Collapse)AuthorAgeFilesLines
* Move the test runner plugins into their own sub-package.Ned Batchelder2010-05-301-180/+0
| | | | | | --HG-- rename : coverage/noseplugin.py => coverage/runners/noseplugin.py rename : coverage/testplugin.py => coverage/runners/pytestplugin.py
* Omit_prefixes is now just 'omit'.Ned Batchelder2010-05-301-5/+5
|
* Your wish is my command.Ned Batchelder2010-05-301-17/+0
|
* fixed a bug caused in 8e1995c8156a - refactoring out omit_filter never ↵David Stanek2010-05-221-1/+1
| | | | really worked
* cleaned up the testplugin moduleDavid Stanek2010-05-211-103/+75
|
* refactored the plugin's finish method to better enable filtering modules ↵David Stanek2010-05-211-6/+10
| | | | from a report
* fixed the --cover-packages optionDavid Stanek2010-05-211-11/+11
|
* fixed an error where not specifying the cover package would cause a tracebackDavid Stanek2010-05-211-4/+6
|
* modified to use report as the default action - the way the old nose plugin ↵David Stanek2010-05-211-1/+1
| | | | worked
* fixed busted nose integrationDavid Stanek2010-02-201-2/+3
|
* integrate a patch by prologic (James Mills) to add some options.holger krekel2010-02-101-4/+32
|
* merging/unifying test plugin codeholger krekel2009-11-251-0/+190
* 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