From d7beb5bddf41045ac6bde89f45a0474745ebaf72 Mon Sep 17 00:00:00 2001 From: Rose Yemelyanova Date: Mon, 21 Aug 2023 14:50:38 +0000 Subject: [PATCH 1/2] Add codecoverage settings with reasonable tolerance --- .codecov.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .codecov.yml diff --git a/.codecov.yml b/.codecov.yml new file mode 100644 index 0000000000..9a442b1b8c --- /dev/null +++ b/.codecov.yml @@ -0,0 +1,14 @@ +# show coverage in CI status, not as a comment. +comment: false +coverage: + status: + project: + default: + target: auto + threshold: 0.1% + patch: + default: + target: auto + threshold: 0.1% +github_checks: + annotations: false From 4b1d190215b2279cfca822a4403d14cfd92d202e Mon Sep 17 00:00:00 2001 From: Rose Yemelyanova Date: Mon, 21 Aug 2023 14:52:51 +0000 Subject: [PATCH 2/2] Reduce reasonable tolerance to .05% --- .codecov.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.codecov.yml b/.codecov.yml index 9a442b1b8c..c58f6cf51f 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -5,10 +5,10 @@ coverage: project: default: target: auto - threshold: 0.1% + threshold: 0.05% patch: default: target: auto - threshold: 0.1% + threshold: 0.05% github_checks: annotations: false