From e6f82910fcf6072c35c24c39378b48426d616a26 Mon Sep 17 00:00:00 2001 From: Gusto Bacvinka Date: Thu, 26 Jan 2023 21:51:52 +0200 Subject: [PATCH] Run echo tests as seperate processes --- .github/workflows/codecov.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 6f08779..bd410f0 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -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