diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 099e7c509..7b0eb99c0 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -77,6 +77,8 @@ jobs: - name: Upload test results to Codecov if: ${{ !cancelled() }} uses: codecov/test-results-action@v1 + continue-on-error: true with: + fail_ci_if_error: false token: ${{ secrets.CODECOV_TOKEN }} flags: integrationtests diff --git a/.github/workflows/ui_tests.yml b/.github/workflows/ui_tests.yml index 8a02b401a..eab569396 100644 --- a/.github/workflows/ui_tests.yml +++ b/.github/workflows/ui_tests.yml @@ -75,6 +75,8 @@ jobs: - name: Upload test results to Codecov if: ${{ !cancelled() }} uses: codecov/test-results-action@v1 + continue-on-error: true with: + fail_ci_if_error: false token: ${{ secrets.CODECOV_TOKEN }} flags: uitests diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 0bd995d16..63fa5e54e 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -75,6 +75,8 @@ jobs: - name: Upload test results to Codecov if: ${{ !cancelled() }} uses: codecov/test-results-action@v1 + continue-on-error: true with: + fail_ci_if_error: false token: ${{ secrets.CODECOV_TOKEN }} flags: unittests