Skip to content

Commit 43b8ba6

Browse files
committed
sometimes it goes faster
1 parent 23659e9 commit 43b8ba6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/e2e-playwright/tests/sleepers/test_sleepers.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ def test_sleepers(
170170
RunningState.WAITING_FOR_CLUSTER,
171171
RunningState.WAITING_FOR_RESOURCES,
172172
RunningState.STARTED,
173+
RunningState.SUCCESS,
173174
),
174175
timeout_ms=_WAITING_FOR_PIPELINE_TO_CHANGE_STATE,
175176
)
@@ -182,6 +183,7 @@ def test_sleepers(
182183
expected_states=(
183184
RunningState.WAITING_FOR_RESOURCES,
184185
RunningState.STARTED,
186+
RunningState.SUCCESS,
185187
),
186188
timeout_ms=_WAITING_FOR_CLUSTER_MAX_WAITING_TIME,
187189
)
@@ -191,7 +193,10 @@ def test_sleepers(
191193
current_state,
192194
websocket=log_in_and_out,
193195
if_in_states=(RunningState.WAITING_FOR_RESOURCES,),
194-
expected_states=(RunningState.STARTED,),
196+
expected_states=(
197+
RunningState.STARTED,
198+
RunningState.SUCCESS,
199+
),
195200
timeout_ms=_WAITING_FOR_STARTED_MAX_WAITING_TIME,
196201
)
197202

0 commit comments

Comments
 (0)