summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2017-10-12 11:17:51 -0400
committerNed Batchelder <ned@nedbatchelder.com>2017-10-12 11:17:51 -0400
commit6931d2ecd71da60cb8e06f4b1011dacdea74f28f (patch)
treee57124c353d433759f82cc751d491150425b55bd
parentfdb394a789f334cd6a626faa98cf57beb9798d7f (diff)
downloadpython-coveragepy-6931d2ecd71da60cb8e06f4b1011dacdea74f28f.tar.gz
Flaky tests are really flaky
-rw-r--r--tests/test_concurrency.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_concurrency.py b/tests/test_concurrency.py
index 841b5df..a57ee93 100644
--- a/tests/test_concurrency.py
+++ b/tests/test_concurrency.py
@@ -354,7 +354,7 @@ MULTI_CODE = """
"""
-@flaky # Sometimes a test fails due to inherent randomness. Try one more time.
+@flaky(max_runs=4) # Sometimes a test fails due to inherent randomness. Try one more time.
class MultiprocessingTest(CoverageTest):
"""Test support of the multiprocessing module."""