From fde1328c11cb4b79003004a4d2e29b206aa9ee1a Mon Sep 17 00:00:00 2001 From: Alex Koshelev Date: Tue, 16 Jan 2024 09:03:55 -0800 Subject: [PATCH] Relax CodeCov targets Given that there are plenty of false positives (#920, #919), it does not make sense to keep the target coverage that high. --- .github/codecov.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/codecov.yml b/.github/codecov.yml index d687995b3..6a9bc2754 100644 --- a/.github/codecov.yml +++ b/.github/codecov.yml @@ -2,9 +2,9 @@ coverage: status: project: default: - target: 89% # the required coverage value - threshold: 0.5% # the leniency in hitting the target + target: 85% # the required coverage value + threshold: 1% # the leniency in hitting the target patch: default: - target: 90% # the required coverage value - threshold: 0.5% # the leniency in hitting the target + target: 80% # the required coverage value + threshold: 1% # the leniency in hitting the target