Run echo tests as seperate processes

This commit is contained in:
Gusto Bacvinka 2023-01-26 21:51:52 +02:00 committed by gusto
parent 7682030e3c
commit e6f82910fc

View File

@ -31,7 +31,9 @@ jobs:
continue-on-error: true
- run: |
cargo install grcov;
cargo test --all-features -- --include-ignored;
cargo test --all-features;
cargo test discv5_echo -- --ignored;
cargo test default_echo -- --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