From 64d00fa0ba4fbc7c8a8277ba412f8b1f37a0c33b Mon Sep 17 00:00:00 2001 From: Jelte Fennema Date: Wed, 23 Aug 2023 22:59:21 +0200 Subject: [PATCH] Actually use the coverage markers --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d09d7c..a78d585 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -115,7 +115,7 @@ jobs: - name: Install grcov run: if [[ ! -e ~/.cargo/bin/grcov ]]; then cargo install grcov; fi - name: Run grcov - run: grcov . --binary-path target/debug/deps/ -s . -t lcov --branch --ignore-not-existing --ignore '../**' --ignore '/*' -o coverage.lcov + run: grcov . --binary-path target/debug/deps/ -s . -t lcov --branch --ignore-not-existing --ignore '../**' --ignore '/*' -o coverage.lcov --excl-start grcov-excl-start --excl-stop grcov-excl-stop - name: Codecov # You may pin to the exact commit or the version. # uses: codecov/codecov-action@81cd2dc8148241f03f5839d295e000b8f761e378