From 49554540e8ee40ad90aee1be43949e63c4aefb91 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Sat, 22 Oct 2022 10:00:32 -0300 Subject: [PATCH] Merge pull request #10409 from pytest-dev/asottile-patch-1 allow jobs to pass if codecov.io fails --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 33b32a1ab..ce0e77680 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -183,7 +183,8 @@ jobs: - name: Upload coverage to Codecov if: "matrix.use_coverage" - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3 + continue-on-error: true with: fail_ci_if_error: true files: ./coverage.xml