Skip to content

Commit 5abd78a

Browse files
Chore: [AEA-0000] - Allow 200 response on pipeline kick off (#527)
## Summary - 🤖 Operational or Infrastructure Change ### Details Accommodate diff success code from GitHub when regression tests triggered. --------- Signed-off-by: Connor Avery <[email protected]> Co-authored-by: Connor Avery <[email protected]>
1 parent 8f4a9d8 commit 5abd78a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/run_regression_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def trigger_test_run(
8585

8686
print(f"Dispatch workflow. Unique workflow identifier: {run_id}")
8787
assert (
88-
response.status_code == 204
88+
response.status_code == 204 or response.status_code == 200
8989
), f"Failed to trigger test run. Expected 204, got {response.status_code}. Response: {response.text}"
9090

9191

0 commit comments

Comments
 (0)