From 79af55238f31fb53d92f1dffdec7003b9ec9ef57 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 9 Feb 2025 22:52:21 +0000 Subject: [PATCH] chore: don't show failed CI for codecov issues --- codecov.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 codecov.yml diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 00000000..87f4f27e --- /dev/null +++ b/codecov.yml @@ -0,0 +1,16 @@ +comment: false + +coverage: + status: + project: + default: + threshold: 100% # make CI green + patch: + default: + threshold: 100% # make CI green + +# ignore code coverage on following paths +ignore: + - "**/tests" + - "**/benches" + - "**/examples"