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