From 8268b7fb5fff9e9b411e83d41720d8242745c9dd Mon Sep 17 00:00:00 2001 From: Stefan Ceriu Date: Wed, 18 Sep 2024 14:29:20 +0300 Subject: [PATCH] Try to stop random codecov test result action failures from failing the whole test run. --- .github/workflows/integration-tests.yml | 2 ++ .github/workflows/ui_tests.yml | 2 ++ .github/workflows/unit_tests.yml | 2 ++ 3 files changed, 6 insertions(+) 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