summaryrefslogtreecommitdiff
path: root/test/test_testplugin.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2010-06-02 11:01:01 -0400
committerNed Batchelder <ned@nedbatchelder.com>2010-06-02 11:01:01 -0400
commit786e98f3c37e1c3bdedc424ed6eaec86e900ec83 (patch)
tree20e4ffa2ad129b14953552c2651cb06e995e06a6 /test/test_testplugin.py
parent15468735fd923b329d8823afed10e52b1a7a72d6 (diff)
downloadpython-coveragepy-git-786e98f3c37e1c3bdedc424ed6eaec86e900ec83.tar.gz
Mark the py.test test as not to be run in nose.
Diffstat (limited to 'test/test_testplugin.py')
-rw-r--r--test/test_testplugin.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_testplugin.py b/test/test_testplugin.py
index 15ed4081..c5bcca01 100644
--- a/test/test_testplugin.py
+++ b/test/test_testplugin.py
@@ -41,3 +41,6 @@ def test_functional(testdir):
coveragefile = testdir.tmpdir.join(".coverage")
assert coveragefile.check()
# XXX try loading it?
+
+# Keep test_functional from running in nose:
+test_functional.__test__ = False