From fd68bc3ac4752d5fc002878467c108f17ab97042 Mon Sep 17 00:00:00 2001 From: Ivan Folgueira Bande Date: Tue, 7 Oct 2025 23:43:04 +0200 Subject: [PATCH] avoid the use of --all-features running 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 7553117..371bd75 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -30,7 +30,7 @@ jobs: echo "Installing grcov"; cargo install grcov; echo "Running tests"; - cargo test --all-features; + cargo test; echo "Running ignored tests for coverage"; cargo test discv5_echo -- --ignored; echo "Running default_echo ignored tests for coverage";