From ebb998a40bb61e0db7d09bcd8ad78af6d9d5d407 Mon Sep 17 00:00:00 2001 From: William Bergamin Date: Mon, 20 Jul 2026 12:50:42 -0400 Subject: [PATCH] ci: do not fail CI when Codecov test-results upload errors The "Upload test results to Codecov" step in the unittest job is a best-effort reporting side-channel, not a gate on code correctness. Set fail_ci_if_error to false so a transient Codecov outage or upload error no longer fails an otherwise passing build. Co-Authored-By: Claude --- .github/workflows/ci-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index ce2764ae4..24c56d94a 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -98,7 +98,7 @@ jobs: uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0 with: directory: ./reports/ - fail_ci_if_error: true + fail_ci_if_error: false flags: ${{ matrix.python-version }} report_type: test_results token: ${{ secrets.CODECOV_TOKEN }}