summaryrefslogtreecommitdiff
path: root/test/test_testplugin.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove the test runner plugins for now.Ned Batchelder2010-07-121-46/+0
|
* The 'source' option is a list of directories or packages to limit coverage's ↵Ned Batchelder2010-06-131-1/+1
| | | | attention.
* Mark the py.test test as not to be run in nose.Ned Batchelder2010-06-021-0/+3
|
* Add some docstringsNed Batchelder2010-06-011-0/+6
|
* Clean up the plugins more. Add the rcfile and include options. Omit can no ↵Ned Batchelder2010-05-311-2/+2
| | | | longer be a file of omissions, use the rcfile for that.
* Refactor the common parts of the plugins to neutral territory.Ned Batchelder2010-05-301-2/+3
|
* Move the test runner plugins into their own sub-package.Ned Batchelder2010-05-301-1/+1
| | | | | | --HG-- rename : coverage/noseplugin.py => coverage/runners/noseplugin.py rename : coverage/testplugin.py => coverage/runners/pytestplugin.py
* cleaned up the code for the nose pluginDavid Stanek2010-05-211-2/+2
|
* moved the nose plugin to a better nameDavid Stanek2010-02-201-1/+1
| | | | | --HG-- rename : coverage/nose_coverage.py => coverage/noseplugin.py
* merging/unifying test plugin codeholger krekel2009-11-251-0/+36
* 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