diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-10-12 11:17:51 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-10-12 11:17:51 -0400 |
commit | feadb6992650cc2ac95fa6fa41c1c216022a5d33 (patch) | |
tree | 081666e07f80a0132fc2b29906762fe4e043ca48 | |
parent | f7a6f9ed9b69d3dc1fb0586b89f16eff37951b22 (diff) | |
download | python-coveragepy-git-feadb6992650cc2ac95fa6fa41c1c216022a5d33.tar.gz |
Flaky tests are really flaky
-rw-r--r-- | tests/test_concurrency.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_concurrency.py b/tests/test_concurrency.py index 841b5df4..a57ee93b 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.""" |