Reverted binary copies; running ignored tests for coverage

This commit is contained in:
Augustinas Bacvinka 2022-12-16 18:46:41 +02:00
parent d513ca08b4
commit 371a308b15

View File

@ -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: