From 8dad22cfa88bbeb263e907805ef145b3047b2dde Mon Sep 17 00:00:00 2001 From: Gusto Bacvinka Date: Wed, 25 Jan 2023 10:15:51 +0200 Subject: [PATCH] Codecov with all tests included --- .github/workflows/codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 7225c9d..6f08779 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -31,7 +31,7 @@ jobs: continue-on-error: true - run: | cargo install grcov; - cargo test --all-features -- --ignored; + cargo test --all-features -- --include-ignored; mkdir /tmp/cov; grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/cov/tests.lcov; - uses: codecov/codecov-action@v3