Disable coverage annotations in GitHub (#9077)
This commit is contained in:
parent
6f3cb1a6a3
commit
33ffd67a7c
|
@ -36,7 +36,6 @@ coverage:
|
||||||
# https://codecov.readme.io/v1.0/docs/commit-status
|
# https://codecov.readme.io/v1.0/docs/commit-status
|
||||||
project:
|
project:
|
||||||
default:
|
default:
|
||||||
against: auto
|
|
||||||
target: 99% # specify the target coverage for each commit status
|
target: 99% # specify the target coverage for each commit status
|
||||||
threshold: 30% # allow this little decrease on project
|
threshold: 30% # allow this little decrease on project
|
||||||
# https://github.com/codecov/support/wiki/Filtering-Branches
|
# https://github.com/codecov/support/wiki/Filtering-Branches
|
||||||
|
@ -45,11 +44,14 @@ coverage:
|
||||||
# https://github.com/codecov/support/wiki/Patch-Status
|
# https://github.com/codecov/support/wiki/Patch-Status
|
||||||
patch:
|
patch:
|
||||||
default:
|
default:
|
||||||
against: auto
|
|
||||||
target: 50% # specify the target "X%" coverage to hit
|
target: 50% # specify the target "X%" coverage to hit
|
||||||
# threshold: 50% # allow this much decrease on patch
|
# threshold: 50% # allow this much decrease on patch
|
||||||
changes: false
|
changes: false
|
||||||
|
|
||||||
|
# https://docs.codecov.com/docs/github-checks#disabling-github-checks-patch-annotations
|
||||||
|
github_checks:
|
||||||
|
annotations: false
|
||||||
|
|
||||||
parsers:
|
parsers:
|
||||||
gcov:
|
gcov:
|
||||||
branch_detection:
|
branch_detection:
|
||||||
|
|
Loading…
Reference in New Issue