From fcf04ba8566825f1c6934713c007322e775dac7f Mon Sep 17 00:00:00 2001 From: Logan Jones Date: Sat, 2 Jun 2018 20:32:42 -0400 Subject: [PATCH] Python 2.7 tests were too slow. For some reason (I have not investigated) the config loading takes longer in python 2.7 than in python 3. This caused a higher probability for the watching tests to fail. --- tests/spec_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/spec_test.py b/tests/spec_test.py index cf8afd9..6facf52 100644 --- a/tests/spec_test.py +++ b/tests/spec_test.py @@ -869,7 +869,7 @@ def change_config(label): wait_time = 0.0 - while any(flags.values()) and wait_time <= 3: + while any(flags.values()) and wait_time <= 4: time.sleep(0.25) wait_time += 0.25