Skip to content

Commit 1e5ce35

Browse files
authored
Detect docker-compose start up failures and fail early (#95)
1 parent 525ef8f commit 1e5ce35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/soak-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ jobs:
154154
echo "RUN_TESTS_EXIT_CODE=$RUN_TESTS_EXIT_CODE" | tee --append $GITHUB_ENV;
155155
exit $RUN_TESTS_EXIT_CODE;
156156
- name: Fail early if Soak Tests failed to start
157-
if: ${{ env.RUN_TESTS_EXIT_CODE == 1 }}
157+
if: ${{ env.RUN_TESTS_EXIT_CODE == '' || env.RUN_TESTS_EXIT_CODE == 1 }}
158158
run: exit 1;
159159

160160
# MARK: - Report on Performance Test Results

0 commit comments

Comments
 (0)