summaryrefslogtreecommitdiff
path: root/nose/core.py
diff options
context:
space:
mode:
authorJason Pellerin <jpellerin@gmail.com>2007-04-30 22:39:23 +0000
committerJason Pellerin <jpellerin@gmail.com>2007-04-30 22:39:23 +0000
commit38c192bf2cffa8861fbbdd0bc9ef327b1dbd0a2a (patch)
tree00c3b51f225193e05318a9fb26c787c2f9f73cc5 /nose/core.py
parent58ce6402564676fb8d373419ff9fc09ade86cde3 (diff)
downloadnose-38c192bf2cffa8861fbbdd0bc9ef327b1dbd0a2a.tar.gz
Updated docs in plugins.attrib and plugins.base
Diffstat (limited to 'nose/core.py')
-rw-r--r--nose/core.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/nose/core.py b/nose/core.py
index b858306..f3bbafc 100644
--- a/nose/core.py
+++ b/nose/core.py
@@ -59,7 +59,8 @@ def collector():
# plugins that implement any of these methods are disabled, since
# we don't control the test runner and won't be able to run them
setuptools_incompat = ('report', 'finalize', 'prepareTest',
- 'setOutputStream')
+ 'prepareTestLoader', 'prepareTestResult',
+ 'prepareTestRunner', 'setOutputStream')
conf = Config(files=all_config_files(),
plugins=RestrictedPluginManager(exclude=setuptools_incompat))