diff --git a/.github/workflows/daily-image-tests.yml b/.github/workflows/daily-image-tests.yml index ea13854682..09fc222adb 100644 --- a/.github/workflows/daily-image-tests.yml +++ b/.github/workflows/daily-image-tests.yml @@ -33,6 +33,7 @@ jobs: with: deploy_url: ${{ inputs.deploy_url || 'https://ssw.com.au' }} tests_to_run: ${{ inputs.tests_to_run || 'images'}} + continue-on-failure: true test-output: name: Test Output diff --git a/.github/workflows/template-ui-tests.yml b/.github/workflows/template-ui-tests.yml index 69d83e6f59..12583c322e 100644 --- a/.github/workflows/template-ui-tests.yml +++ b/.github/workflows/template-ui-tests.yml @@ -9,6 +9,9 @@ on: tests_to_run: type: string required: true + continue-on-failure: + type: boolean + required: false outputs: artifact-id: description: "Playwright Artifact ID" @@ -21,6 +24,7 @@ jobs: test: name: Run Playwright tests runs-on: ubuntu-latest + continue-on-error: ${{ inputs.continue-on-failure || false }} outputs: testPassed: ${{ steps.onFailure.outputs.testPassed || 'True' }} artifact-id: ${{ steps.artifact-report.outputs.artifact-id }}