codevoc: fix threshold
d49f0fef4 added a 5% threshold to codecov.yml, so that small fixes don't
turn the CI red.
However, it contained a typo and put the setting in the wrong place in
the file. codecov.io ignores unknown keys instead of throwing an error.
Fix this and validate with:
cat codecov.yml | curl --data-binary @- https://codecov.io/validate
This commit is contained in:
parent
3e26a1e632
commit
0ad7843dad
1 changed files with 3 additions and 3 deletions
|
|
@ -1,9 +1,9 @@
|
|||
coverage:
|
||||
project:
|
||||
default:
|
||||
treshold: 5%
|
||||
status:
|
||||
patch: no
|
||||
project:
|
||||
default:
|
||||
threshold: 5%
|
||||
codecov:
|
||||
require_ci_to_pass: no
|
||||
comment: no
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue