We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98e92fa commit 69d7f80Copy full SHA for 69d7f80
.github/workflows/soak-testing.yml
@@ -160,7 +160,7 @@ jobs:
160
echo "RUN_TESTS_EXIT_CODE=$RUN_TESTS_EXIT_CODE" | tee --append $GITHUB_ENV;
161
exit $RUN_TESTS_EXIT_CODE;
162
- name: Fail early if Soak Tests failed to start
163
- if: ${{ env.RUN_TESTS_EXIT_CODE == 1 }}
+ if: ${{ env.RUN_TESTS_EXIT_CODE == '' || env.RUN_TESTS_EXIT_CODE == 1 }}
164
run: exit 1;
165
166
# MARK: - Report on Performance Test Results
0 commit comments