Skip to content

Commit

Permalink
CI: do not fail the build when the coverage upload fails (#4239)
Browse files Browse the repository at this point in the history
This happens quite a bit and will fail the entire build. Since GHA does
not yet allow rerunning a single failed job, we have to restart the
entire build. Since on top of that we are currently just using the
coverage as an indicator, it seems excessive to fail the entire build if
the coverage upload of a single job fails.
  • Loading branch information
ltalirz authored Jul 9, 2020
1 parent d7a250b commit 6b2f4dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:
name: aiida-pytests-py3.5-${{ matrix.backend }}
flags: ${{ matrix.backend }}
file: ./coverage.xml
fail_ci_if_error: true
fail_ci_if_error: false # don't fail job, if coverage upload fails

verdi:

Expand Down

0 comments on commit 6b2f4dd

Please sign in to comment.