From 6b0eb20eaf6718caec874f2a8a8247d9b3f9744e Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 9 Feb 2025 22:56:27 +0000 Subject: [PATCH] chore: don't show failed CI for codecov issues (#64) --- 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 0000000..87f4f27 --- /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"