File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
tests/e2e-playwright/tests/sleepers Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments