From 1071f132595136d6e4cece4eb985931180f43a90 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sat, 28 Sep 2024 00:56:39 -0400 Subject: [PATCH] test(coverage): ignore _deps directory (#3233) --- .github/workflows/CI.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 9dae2525..aa07292a 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -430,6 +430,7 @@ jobs: --exclude-noncode-lines \ --exclude-throw-branches \ --exclude-unreachable-branches \ + --exclude '.*_deps/.*' \ --exclude '.*tests/.*' \ --exclude '.*third-party/.*' \ --xml-pretty \ @@ -865,6 +866,7 @@ jobs: --exclude-noncode-lines \ --exclude-throw-branches \ --exclude-unreachable-branches \ + --exclude '.*${dir}/_deps/.*' \ --exclude '.*${dir}/tests/.*' \ --exclude '.*${dir}/third-party/.*' \ --gcov-object-directory $(pwd) \ @@ -1141,9 +1143,9 @@ jobs: --exclude-noncode-lines \ --exclude-throw-branches \ --exclude-unreachable-branches \ + --exclude '.*_deps/.*' \ --exclude '.*tests/.*' \ --exclude '.*third-party/.*' \ - --exclude '.*_deps/.*' \ --xml-pretty \ -o coverage.xml