E2E Workflow continue on fail (#8833)

This commit is contained in:
Pere Miquel Brull 2022-11-17 09:41:20 +01:00 committed by GitHub
parent c56004c395
commit b107bae4d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,6 +63,7 @@ jobs:
- name: Run Python Tests
id: e2e-test
continue-on-error: true
env:
E2E_TEST: ${{ matrix.e2e-test }}
run: |
@ -80,3 +81,8 @@ jobs:
env:
SLACK_WEBHOOK_URL: ${{ secrets.E2E_SLACK_WEBHOOK }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
- name: Force failure
if: steps.e2e-test.outcome != 'success'
run: |
exit 1