From e4fd5bbe61bdaa4e24f29eed0b6a53804c955511 Mon Sep 17 00:00:00 2001 From: Mark Burnett Date: Fri, 1 Jan 2021 16:11:17 -0600 Subject: [PATCH] Exclude external files from coverage report --- .github/actions-rs/grcov.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions-rs/grcov.yml b/.github/actions-rs/grcov.yml index de9b1dd..890bbec 100644 --- a/.github/actions-rs/grcov.yml +++ b/.github/actions-rs/grcov.yml @@ -3,3 +3,7 @@ filter: covered ignore-not-existing: true llvm: true output-type: lcov +ignore: + - "/*" + - "C:/*" + - "../*"