Skip to content

Commit

Permalink
Detect docker-compose start up failures and fail soak tests early (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanielRN committed Oct 15, 2021
1 parent f28f348 commit b9ca772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/soak-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
echo "RUN_TESTS_EXIT_CODE=$RUN_TESTS_EXIT_CODE" | tee --append $GITHUB_ENV;
exit $RUN_TESTS_EXIT_CODE;
- name: Fail early if Soak Tests failed to start
if: ${{ env.RUN_TESTS_EXIT_CODE == 1 }}
if: ${{ env.RUN_TESTS_EXIT_CODE == '' || env.RUN_TESTS_EXIT_CODE == 1 }}
run: exit 1;

# MARK: - Report on Performance Test Results
Expand Down

0 comments on commit b9ca772

Please sign in to comment.