summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2020-11-29 08:50:25 -0500
committerNed Batchelder <ned@nedbatchelder.com>2020-11-29 08:50:25 -0500
commita4cf33437a2f07355f7b55464a2f07f6bce0ff1f (patch)
tree37215ade8c68388169c3595e386b500e0ee64020
parentbf70b69d932c0c4f8d697142c0c42867d2e770e7 (diff)
downloadpython-coveragepy-git-a4cf33437a2f07355f7b55464a2f07f6bce0ff1f.tar.gz
Make things flakier
-rw-r--r--tests/test_concurrency.py2
-rw-r--r--tests/test_oddball.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_concurrency.py b/tests/test_concurrency.py
index 7109f170..c77f458f 100644
--- a/tests/test_concurrency.py
+++ b/tests/test_concurrency.py
@@ -362,7 +362,7 @@ MULTI_CODE = """
"""
-@flaky(max_runs=30) # Sometimes a test fails due to inherent randomness. Try more times.
+#@flaky(max_runs=30) # Sometimes a test fails due to inherent randomness. Try more times.
class MultiprocessingTest(CoverageTest):
"""Test support of the multiprocessing module."""
diff --git a/tests/test_oddball.py b/tests/test_oddball.py
index 17f69647..9f1c6dc5 100644
--- a/tests/test_oddball.py
+++ b/tests/test_oddball.py
@@ -146,7 +146,7 @@ class MemoryLeakTest(CoverageTest):
It may still fail occasionally, especially on PyPy.
"""
- @flaky
+ #@flaky
def test_for_leaks(self):
if env.JYTHON:
self.skipTest("Don't bother on Jython")