CI: Do not fail if codecov upload fails (#4570)

This happens all the time with external PRs until https://github.com/codecov/engineering-team/issues/1574 is solved and is doing more harm than good. We still see if there is no coverage attached.
This commit is contained in:
Raphael Michel
2024-10-25 21:40:03 +02:00
committed by GitHub
parent f0fedf0001
commit b43ed38483
+1 -1
View File
@@ -80,5 +80,5 @@ jobs:
with:
file: src/coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
fail_ci_if_error: false
if: matrix.database == 'postgres' && matrix.python-version == '3.11'