From 5acfb5dd875f6514a7f1e2c89da3f30dc36d7b68 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 099e7c509a..7b0eb99c0b 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 8a02b401a4..eab569396a 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 0bd995d168..63fa5e54ed 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