From a779ba7819972df1456e7661ab0ab804e5419cac Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Fri, 25 Oct 2024 21:14:15 +0200 Subject: [PATCH] CI: Do not fail if codecov upload fails This happens all the time with external PRs until https://github.com/codecov/engineering-team/issues/1574 is solved and is doing more harm than good. We still see if there is no coverage attached. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 27fa50698..4a603b93e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -80,5 +80,5 @@ jobs: with: file: src/coverage.xml token: ${{ secrets.CODECOV_TOKEN }} - fail_ci_if_error: true + fail_ci_if_error: false if: matrix.database == 'postgres' && matrix.python-version == '3.11'