From dad035d170d3942d78a8cb0996d4bd121e29dde6 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Mon, 13 Jun 2022 10:46:29 +0200 Subject: [PATCH] chore(test): Configure tarpaulin to use its config file. --- .github/workflows/coverage.yml | 2 +- tarpaulin.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 1371700e4..a88a478e3 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -38,7 +38,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: tarpaulin - args: --workspace --ignore-config --exclude-files "crates/matrix-sdk/examples/*,crates/matrix-sdk-common,crates/matrix-sdk-test" --exclude matrix-sdk-crypto-js --exclude matrix-sdk-crypto-nodejs --out Xml + args: --workspace - name: Upload to codecov.io uses: codecov/codecov-action@v3 diff --git a/tarpaulin.toml b/tarpaulin.toml index 042400e4a..0f174bba0 100644 --- a/tarpaulin.toml +++ b/tarpaulin.toml @@ -1,4 +1,5 @@ [default-config] debug = false verbose = false -exclude-files = ["matrix_sdk/examples/*", "matrix_sdk_common", "matrix_sdk_test"] +exclude-files = ["crates/matrix_sdk/examples/*", "crates/matrix_sdk_common", "crates/matrix_sdk_test"] +exclude = ["matrix-sdk-crypto-js", "matrix-sdk-crypto-nodejs"]