Skip to content

Commit 85f3a81

Browse files
committed
fix: slow down interlock test and increase timeout
1 parent afb1ad5 commit 85f3a81

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

bec_ipython_client/tests/end-2-end/test_actors_e2e.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ def bec_with_delay_device(bec_ipython_client_fixture):
2626
dev.ramp_up.min_val.put(0)
2727
dev.ramp_up.max_val.put(400)
2828
dev.ramp_up.value.put(400)
29-
dev.ramp_up.delay.put(2)
30-
dev.ramp_up.rampup_time.put(2)
29+
dev.ramp_up.delay.put(3)
30+
dev.ramp_up.rampup_time.put(5)
3131
yield bec, dev.ramp_up
3232
dev.ramp_up.stop()
3333

@@ -44,7 +44,7 @@ def ramp_up_bl_state(bec_with_delay_device):
4444
bec.builtin_actors.scan_interlock.clear_all()
4545

4646

47-
def _wait_for(pred, timeout=10, retries=100):
47+
def _wait_for(pred, timeout=20, retries=100):
4848
for i in range(retries):
4949
if pred():
5050
return True

0 commit comments

Comments
 (0)