We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8315c6a commit 17faa00Copy full SHA for 17faa00
1 file changed
tests/integration/test_unit.py
@@ -89,14 +89,14 @@ async def test_run(event_loop):
89
break
90
91
for unit in app.units:
92
- action2 = await unit.run('sleep 1', timeout=0.5)
+ action2 = await unit.run('sleep 3', timeout=1)
93
assert isinstance(action2, Action)
94
await action2.wait()
95
assert action2.status == 'failed'
96
97
98
99
- action3 = await unit.run('sleep 0.5', timeout=2)
+ action3 = await unit.run('sleep 1', timeout=3)
100
assert isinstance(action3, Action)
101
await action3.wait()
102
assert action3.status == 'completed'
0 commit comments