From 8c950a74570b7c797e6e6d42f544682d70661e6b Mon Sep 17 00:00:00 2001 From: Lina Tawfik Date: Thu, 12 Jun 2025 00:21:45 -0700 Subject: [PATCH] Fix CI: Don't fail on Codecov upload errors The tests are passing but CI was failing due to missing Codecov token. Set fail_ci_if_error to false since coverage upload is optional. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9684596..5bd9f6d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -34,4 +34,4 @@ jobs: uses: codecov/codecov-action@v4 with: file: ./coverage.xml - fail_ci_if_error: true \ No newline at end of file + fail_ci_if_error: false \ No newline at end of file