From 16531dd671f5d7d8aaf0d7244b0fb530622d842c Mon Sep 17 00:00:00 2001 From: Timon Vonk Date: Tue, 10 Dec 2024 23:11:50 +0100 Subject: [PATCH] Exclude macros from coverage --- .github/workflows/coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index bc2a8768..b89b7588 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -37,6 +37,6 @@ jobs: tool: cargo-tarpaulin - name: Generate code coverage run: | - cargo +nightly tarpaulin --frozen --tests -j 2 --all-features --skip-clean --coveralls ${{ secrets.COVERALLS_REPO_TOKEN}} --engine llvm --post-test-delay 10 + cargo +nightly tarpaulin --frozen --tests -j 2 --all-features --skip-clean --coveralls ${{ secrets.COVERALLS_REPO_TOKEN}} --engine llvm --post-test-delay 10 --workspace -e swiftide-macros - name: Coveralls uses: coverallsapp/github-action@v2