From fccbf7b450a7b403592a1646b6cc202a06f8766d Mon Sep 17 00:00:00 2001 From: Ivan Gankevich Date: Sun, 21 Apr 2024 18:07:19 +0200 Subject: [PATCH] CI --- ci/test.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ci/test.sh b/ci/test.sh index f065694..5fe0cb7 100755 --- a/ci/test.sh +++ b/ci/test.sh @@ -30,10 +30,8 @@ test_coverage_postamble() { test_all() { # compile everything cargo test --quiet --no-run - # run unit tests - cargo test --no-fail-fast --lib -- --nocapture - # run integration tests - cargo test --no-fail-fast --test '*' -- --nocapture + # run all tests + cargo test --no-fail-fast -- --nocapture } set -ex