From dc860a9768cde146084438669f7a9da5707090e1 Mon Sep 17 00:00:00 2001 From: Lennart <18233294+lennart-k@users.noreply.github.com> Date: Sun, 21 Sep 2025 21:10:56 +0200 Subject: [PATCH] coverage: Exclude xml_derive --- .github/workflows/cicd.yml | 2 +- Justfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 212b164..7dfd8d6 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -66,7 +66,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: tarpaulin - args: --workspace --all-features --coveralls ${{ secrets.COVERALLS_REPO_TOKEN }} + args: --workspace --all-features --exclude xml_derive --coveralls ${{ secrets.COVERALLS_REPO_TOKEN }} lints: name: Lints diff --git a/Justfile b/Justfile index 4cc7728..b6b5674 100644 --- a/Justfile +++ b/Justfile @@ -14,4 +14,4 @@ docs-dev: mkdocs serve coverage: - cargo-tarpaulin --workspace + cargo tarpaulin --workspace --exclude xml_derive