Skip to content

Commit a776b8f

Browse files
committed
tests/pywatch_test: extend timeout
The timeout of 0.1 seconds was to low for CI, as it didn't start executing yet. So let's raise it a bit to 0.2 seconds to make it work on CI. Signed-off-by: Jean-Louis Dupond <jean-louis@dupond.be>
1 parent 88c758d commit a776b8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/pywatch_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def inner():
9191
'''
9292
with pytest.raises(cmdutils.Error) as e:
9393
commands.run([
94-
sys.executable, 'py-watch', '0.1', sys.executable,
94+
sys.executable, 'py-watch', '0.2', sys.executable,
9595
'-c', script])
9696
assert b'line 8, in inner' in e.value.out
9797
assert b'line 5, in outer' in e.value.out

0 commit comments

Comments
 (0)