summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn L. Villalovos <john@sodarock.com>2022-01-13 15:16:35 -0800
committerJohn L. Villalovos <john@sodarock.com>2022-01-13 15:16:35 -0800
commitd5b3744c26c8c78f49e69da251cd53da70b180b3 (patch)
treef30fff84a8c1f7eccedb4918648f6edc21d63e8a
parent8b14ff0756569dd0afdc364ed95f0bb7393d5407 (diff)
downloadgitlab-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.yml4
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