diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-01-18 22:50:43 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-01-18 22:50:43 -0500 |
commit | 1a6b57d7d181ba4d8eb6098aab7c58670db69ea9 (patch) | |
tree | d90ea8e695538f26f5f1a7d1d1a29b93d0bb44af | |
parent | d28a509215963231d1766c8680d2f340cd7ad17d (diff) | |
download | python-coveragepy-git-1a6b57d7d181ba4d8eb6098aab7c58670db69ea9.tar.gz |
The ram test has always been flaky. Mark it as such.
-rw-r--r-- | tests/test_oddball.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_oddball.py b/tests/test_oddball.py index d55fb440..c617cf42 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") |