diff --git a/tests/test_idle.py b/tests/test_idle.py index 430e49fa06522681bae391320e898fb12180cbdb..b2eee726574eb484ddaadcff90fadc17e7fadb05 100644 --- a/tests/test_idle.py +++ b/tests/test_idle.py @@ -174,7 +174,11 @@ def _test_block(): idle.block(2) end = time.time() - assert (end - start) >= 2 + + # Be relaxed about precision - timing + # can sometimes be pretty sloppy when + # running in a docker container. + assert abs((end - start) < 2) < 0.05 if fslplatform.haveGui: assert called[0]