Skip to content

Commit cacc87d

Browse files
authored
Fix: [AEA-0000] - fix logic in showing failure (#206)
## Summary - Routine Change ### Details - fix logic in showing failure
1 parent 591fc98 commit cacc87d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/regression_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
repositories: "electronic-prescription-service-api-regression-tests,eps-test-reports"
164164

165165
- name: Report failure on test failure
166-
if: steps.tests.outcome != 'success' || steps.sha1_tests.outcome != 'success'
166+
if: steps.tests.outcome != 'success' || ( steps.sha1_tests.outcome != 'success' && steps.sha1_tests.outcome != 'skipped' )
167167
run: |
168168
poetry run python scripts/send_test_results.py --token=${{ steps.generate-token.outputs.token }} --run_id ${{GITHUB.RUN_ID}}
169169
echo The regression tests step failed, this likely means there are test failures.

0 commit comments

Comments
 (0)