summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorholger krekel <holger@merlinux.eu>2009-11-25 18:56:24 +0100
committerholger krekel <holger@merlinux.eu>2009-11-25 18:56:24 +0100
commit1a6b591c080c84932ba27990d95cbbd356fbacc9 (patch)
tree0cd5530908d24be38f22e74cea41be2a77fc7c75 /setup.py
parent49c15be1d5606d1255d2384f1f4876bd1a66a634 (diff)
downloadpython-coveragepy-1a6b591c080c84932ba27990d95cbbd356fbacc9.tar.gz
merging/unifying test plugin code
* 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.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 7ad92f3..38678d1 100644
--- a/setup.py
+++ b/setup.py
@@ -43,7 +43,7 @@ if sys.hexversion < 0x03000000:
'coverage = coverage:main',
],
'pytest11': [
- 'coverage = coverage.pytest_coverage',
+ 'coverage = coverage.testplugin',
],
},