From 27394f9710c99ba6f887225e20ed2f830ec18c78 Mon Sep 17 00:00:00 2001 From: Robin Date: Tue, 3 Sep 2024 16:03:43 -0400 Subject: [PATCH] Make the test coverage target non-blocking Sadly Codecov doesn't give us a way to relax the coverage requirements for changes that touch very few lines of code, which has been an invaluable feature of SonarCloud. I suggest we make the check non-blocking. --- codecov.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/codecov.yaml b/codecov.yaml index 30c038ec..0f42ad4e 100644 --- a/codecov.yaml +++ b/codecov.yaml @@ -9,5 +9,7 @@ coverage: informational: true patch: default: - # Expect 80% coverage on all lines that a PR touches + # Encourage (but don't enforce) 80% coverage on all lines that a PR + # touches target: 80% + informational: true