Tune CodeCov to not fail PRs

Currently the CodeCov/patch is too strict and would fail PRs if not
meeting a certain threshold. Tune it down until we bring coverage to
that point before making a threshold requirement.
This commit is contained in:
Nghia Tran 2020-10-07 13:38:51 -07:00
parent 5641732233
commit ebf29848da
1 changed files with 12 additions and 0 deletions

View File

@ -1,2 +1,14 @@
coverage:
# Commit status https://docs.codecov.io/docs/commit-status are used
# to block PR based on coverage threshold.
status:
project:
default:
informational: true
patch:
# Disable the coverage threshold of the patch, so that PRs are
# only failing because of overall project coverage threshold.
# See https://docs.codecov.io/docs/commit-status#disabling-a-status.
default: false
ignore:
- "**/zz_generated*.go" # Ignore generated files.