Skip to content

Commit 16cd889

Browse files
committed
Results parsing and exit code.
1 parent 5348c97 commit 16cd889

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,10 +254,10 @@ jobs:
254254
--timeout 1m \
255255
--scenario-numbers=1 \
256256
--client-details=matrixLabel="${{ runner.os }}-${{ env.YYP_VERSION }}-${{ inputs.runtime}}" | tee test_output.txt
257-
- name: Parse the output and fail the run if the content contains the string `| Failed |`
257+
- name: Parse the output and fail the run if the content does not contains the string `│ Passed │`
258258
if: runner.os == 'Linux'|| runner.os == 'macOS'
259259
run: |
260-
if grep -q "| Passed |" test_output.txt; then
260+
if grep -q " Passed " test_output.txt; then
261261
echo "Game loop test passed"
262262
else
263263
echo "Game loop test failed"

Ganary/scripts/_olympus_internal/_olympus_internal.gml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ function _Olympus_Suite_Manager() constructor {
196196
else{
197197
show_message(ex);
198198
}
199+
return 999;
199200
})
200201
}
201202
current_suite.queue_test();

0 commit comments

Comments
 (0)