Skip to content

Commit

Permalink
Python 2.7 tests were too slow.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
loganasherjones committed Jun 3, 2018
1 parent f2e65ef commit fcf04ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/spec_test.py
Expand Up @@ -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

Expand Down

0 comments on commit fcf04ba

Please sign in to comment.