diff --git a/.github/workflows/my_codecov.yml b/.github/workflows/my_codecov.yml index 9d9465d22..b0d1c168e 100644 --- a/.github/workflows/my_codecov.yml +++ b/.github/workflows/my_codecov.yml @@ -37,8 +37,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | cargo binstall -y grcov; - rustup component add llvm-tools-preview - CARGO_INCREMENTAL=0 RUSTFLAGS='-Cinstrument-coverage' LLVM_PROFILE_FILE='cargo-test-%p-%m.profraw' cargo test -p nomos-da-network-core --no-default-features + CARGO_INCREMENTAL=0 cargo test --no-default-features --features libp2p mkdir /tmp/cov; grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/cov/tests.lcov; env: