From 807397facad0856980b40d2d461632f65702f76e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 29 Oct 2024 09:50:26 +0100 Subject: [PATCH] fix(codecov)_: ignore folders without tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise Codecov reports incorrect numbers when making changes. https://docs.codecov.com/docs/ignoring-paths Signed-off-by: Jakub SokoĊ‚owski --- .codecov.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.codecov.yml b/.codecov.yml index 4bd982eb8..dd5bf3d94 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -6,6 +6,13 @@ codecov: notify: wait_for_ci: true +ignore: + - "_.*" + - "vendor" + - "scripts" + - "contracts" + - "Makefile" + coverage: status: project: @@ -39,7 +46,7 @@ flags: functional-tests: paths: - ".*" - carryforward: true + carryforward: false comment: behavior: default