diff options
author | John L. Villalovos <john@sodarock.com> | 2022-01-13 15:16:35 -0800 |
---|---|---|
committer | John L. Villalovos <john@sodarock.com> | 2022-01-13 15:16:35 -0800 |
commit | d5b3744c26c8c78f49e69da251cd53da70b180b3 (patch) | |
tree | f30fff84a8c1f7eccedb4918648f6edc21d63e8a | |
parent | 8b14ff0756569dd0afdc364ed95f0bb7393d5407 (diff) | |
download | gitlab-d5b3744c26c8c78f49e69da251cd53da70b180b3.tar.gz |
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.
-rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a4b495a..57322ab 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 |