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 | 6931d2ecd71da60cb8e06f4b1011dacdea74f28f (patch) | |
| tree | e57124c353d433759f82cc751d491150425b55bd | |
| parent | fdb394a789f334cd6a626faa98cf57beb9798d7f (diff) | |
| download | python-coveragepy-6931d2ecd71da60cb8e06f4b1011dacdea74f28f.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 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.""" |
