From 449e0ac7f25375c0f883b2f2d2116b1b47f71e50 Mon Sep 17 00:00:00 2001 From: Aaron DeRuvo Date: Fri, 22 Nov 2024 17:07:17 +0100 Subject: [PATCH] adjust codecoverage config. (#460) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### Description we dont use flags so dont comment on them, use double asterisk to fix nothing found at head error **now percentages show** Screenshot 2024-11-22 at 4 52 46 PM **before** Screenshot 2024-11-22 at 11 13 30 AM #### Other changes dev utils component will never find tests because it is utils for tests ### Tested --- ## PR-Codex overview This PR updates the `codecov.yml` configuration file by modifying the `layout` setting and refining the `paths` for various components to include subdirectories. ### Detailed summary - Changed `layout` from `'header, diff, flags, components'` to `'header, diff, components'`. - Updated `paths` for `sdk` to include all subdirectories with `'packages/sdk/**'`. - Updated `paths` for `wallets` to include all subdirectories with `'packages/sdk/wallets/**'`. - Updated `paths` for `viem-sdks` to include all subdirectories with `'packages/viem-**'`. - Removed references to `dev-utils` and its paths. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- codecov.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/codecov.yml b/codecov.yml index bcd6c8a1d..69164f232 100644 --- a/codecov.yml +++ b/codecov.yml @@ -6,7 +6,7 @@ coverage: only_pulls: true comment: - layout: 'header, diff, flags, components' + layout: 'header, diff, components' ignore: - 'packages/typescript' @@ -24,20 +24,16 @@ component_management: name: celocli paths: - packages/cli - - component_id: dev-utils - name: dev-utils - paths: - - packages/dev-utils - component_id: sdks name: sdk paths: - - '!packages/sdk/wallets' - - 'packages/sdk/*' + - '!packages/sdk/wallets/**' + - 'packages/sdk/**' - component_id: wallets name: wallets paths: - - 'packages/sdk/wallets/*' + - 'packages/sdk/wallets/**' - component_id: viem-sdks name: viem-sdks paths: - - 'packages/viem-*' + - 'packages/viem-**'