summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2017-01-18 22:50:43 -0500
committerNed Batchelder <ned@nedbatchelder.com>2017-01-18 22:50:43 -0500
commit1d4622aca557b331bcb64fb3138ddbb0a96cfe3d (patch)
treec7ba6908eff7244365892dfac72a5124f73fd20d /tests
parent52ec44fe5771c6dda91ad110b13ea5d79c5b1a46 (diff)
downloadpython-coveragepy-1d4622aca557b331bcb64fb3138ddbb0a96cfe3d.tar.gz
The ram test has always been flaky. Mark it as such.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_oddball.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_oddball.py b/tests/test_oddball.py
index d55fb44..c617cf4 100644
--- a/tests/test_oddball.py
+++ b/tests/test_oddball.py
@@ -5,6 +5,7 @@
import sys
+from flaky import flaky
import pytest
import coverage
@@ -143,6 +144,7 @@ class MemoryLeakTest(CoverageTest):
It may still fail occasionally, especially on PyPy.
"""
+ @flaky
def test_for_leaks(self):
if env.JYTHON:
self.skipTest("Don't bother on Jython")