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
commit1782e7dba8b7cea282f2f1361a66f8b896352394 (patch)
tree2d22fbbdee967e3cef7e925fb165fda3f15e16a0 /test/test_testplugin.py
parentd91a4636a7e40cac33cf52b285dc46503b83213d (diff)
downloadpython-coveragepy-1782e7dba8b7cea282f2f1361a66f8b896352394.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 15ed408..c5bcca0 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