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 | 786e98f3c37e1c3bdedc424ed6eaec86e900ec83 (patch) | |
tree | 20e4ffa2ad129b14953552c2651cb06e995e06a6 /test/test_testplugin.py | |
parent | 15468735fd923b329d8823afed10e52b1a7a72d6 (diff) | |
download | python-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.py | 3 |
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 |