diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2010-06-02 11:01:01 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2010-06-02 11:01:01 -0400 |
commit | 1782e7dba8b7cea282f2f1361a66f8b896352394 (patch) | |
tree | 2d22fbbdee967e3cef7e925fb165fda3f15e16a0 /test/test_testplugin.py | |
parent | d91a4636a7e40cac33cf52b285dc46503b83213d (diff) | |
download | python-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.py | 3 |
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 |