Skip to content

Commit

Permalink
increase time wiggle room for CI runners
Browse files Browse the repository at this point in the history
  • Loading branch information
karmacoma-eth committed Sep 25, 2024
1 parent c99d994 commit 51881cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_process_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ def test_delayed_start_real_time():
assert not command.started()
assert not command.done()

time.sleep(0.2)
# give it some time to complete (allow some wiggle room for slow CI)
time.sleep(0.4)
assert command.started()
assert command.done()
assert command.returncode == 0
Expand Down

0 comments on commit 51881cb

Please sign in to comment.