From 4c7c17307a46d5ae10e453d51165c57e5bbd1685 Mon Sep 17 00:00:00 2001 From: Giacomo Pasini Date: Thu, 12 Sep 2024 11:48:48 +0200 Subject: [PATCH] only compile tests --- .github/workflows/codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index a5859b5f7..a4176fa6c 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -40,7 +40,7 @@ jobs: mkdir bcp cp ./target/debug/{nomos-cli,nomos-node,rocks} bcp/ cargo clean - cargo test --no-default-features --features libp2p + cargo test --no-default-features --features libp2p --no-run cp bcp/* ./target/debug mkdir /tmp/cov; grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o /tmp/cov/tests.lcov;