From d5b3744c26c8c78f49e69da251cd53da70b180b3 Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Thu, 13 Jan 2022 15:16:35 -0800 Subject: [PATCH] ci: don't fail CI if unable to upload the code coverage data If a CI job can't upload coverage results to codecov.com it causes the CI to fail and code can't be merged. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a4b495a10..57322ab68 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -79,7 +79,7 @@ jobs: with: files: ./coverage.xml flags: ${{ matrix.toxenv }} - fail_ci_if_error: true + fail_ci_if_error: false coverage: runs-on: ubuntu-20.04 @@ -101,4 +101,4 @@ jobs: with: files: ./coverage.xml flags: unit - fail_ci_if_error: true + fail_ci_if_error: false