mirror of https://github.com/dapr/cli.git
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:
parent
5641732233
commit
ebf29848da
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue