From f359427dae3af401058ea1a41ae22950a80d2151 Mon Sep 17 00:00:00 2001 From: Ammar Date: Sun, 26 Oct 2025 17:45:11 +0000 Subject: [PATCH] Fix integration test coverage upload to Codecov The integration-tests flag was incorrectly configured to look for coverage in tests/** paths, but Jest collects coverage from src/** files (as specified in jest.config.js). This caused integration test coverage to not be properly tracked by Codecov. Updated integration-tests flag to cover src/** paths, matching the actual coverage data generated by Jest. --- codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codecov.yml b/codecov.yml index 3a07c8ae65..85cac0a9de 100644 --- a/codecov.yml +++ b/codecov.yml @@ -33,7 +33,7 @@ flags: carryforward: false integration-tests: paths: - - tests/** + - src/** carryforward: false # Ignore common non-source paths