From f7b0502e6487f2edf42e989ee9261dd35d73c717 Mon Sep 17 00:00:00 2001 From: Lars Reimann Date: Tue, 5 Dec 2023 12:29:42 +0100 Subject: [PATCH] ci: exclude test files from Codecov report (#28) ### Summary of Changes For some reason, Codecov started to treat some test files as source files. This PR explicitly excludes all test files. --------- Co-authored-by: megalinter-bot <129584137+megalinter-bot@users.noreply.github.com> --- .github/codecov.yml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .github/codecov.yml diff --git a/.github/codecov.yml b/.github/codecov.yml new file mode 100644 index 0000000..cad9224 --- /dev/null +++ b/.github/codecov.yml @@ -0,0 +1,2 @@ +ignore: + - 'tests/**/*'