From 0ad7843dad056a0f6ecc777d9f6da1fea0d1ee3c Mon Sep 17 00:00:00 2001 From: Lars Karlitski Date: Sat, 16 May 2020 12:37:43 +0200 Subject: [PATCH] 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 --- codecov.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/codecov.yml b/codecov.yml index 401467f29..8e84e868c 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,9 +1,9 @@ coverage: - project: - default: - treshold: 5% status: patch: no + project: + default: + threshold: 5% codecov: require_ci_to_pass: no comment: no