From 371a308b15d147bf589731ade1523c96ca4814bf Mon Sep 17 00:00:00 2001 From: Augustinas Bacvinka Date: Fri, 16 Dec 2022 18:46:41 +0200 Subject: [PATCH] Reverted binary copies; running ignored tests for coverage --- .github/workflows/codecov.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index ff15639..55d034c 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -31,9 +31,8 @@ jobs: continue-on-error: true - run: | cargo install grcov; - cargo test --all-features; + cargo test --all-features -- --ignored; mkdir /tmp/cov; - cp target/debug/deps/waku* target/debug/; # Select only waku related bins for codecov grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/cov/tests.lcov; - uses: codecov/codecov-action@v3 with: