From 5f6ca00bfbc7e31ceb7a265d5916178963c51e35 Mon Sep 17 00:00:00 2001 From: Robin Date: Fri, 23 Aug 2024 15:24:41 -0400 Subject: [PATCH] Configure Codecov Add a coverage gate for all new changes and disable its comments. --- codecov.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 codecov.yaml diff --git a/codecov.yaml b/codecov.yaml new file mode 100644 index 000000000..30c038ec7 --- /dev/null +++ b/codecov.yaml @@ -0,0 +1,13 @@ +# Don't post comments on PRs; they're noisy and the same information can be +# gotten through the checks section at the bottom of the PR anyways +comment: false +coverage: + status: + project: + default: + # Track the impact of changes on overall coverage without blocking PRs + informational: true + patch: + default: + # Expect 80% coverage on all lines that a PR touches + target: 80%