From 4b73e2c283c3bd76bc38851252dcb226ff06fa6d Mon Sep 17 00:00:00 2001 From: yukang Date: Wed, 20 Nov 2024 10:56:11 +0800 Subject: [PATCH] set --no-fail-fast for cargo nextest --- .github/workflows/ci.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 82a08432b..29a29942d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: with: tool: nextest - run: | - RUST_BACKTRACE=full RUST_LOG=trace cargo nextest run + RUST_BACKTRACE=full RUST_LOG=trace cargo nextest run --no-fail-fast fmt: name: Rustfmt diff --git a/Makefile b/Makefile index 5365b7b20..d14e3a6b1 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ GRCOV_EXCL_LINE = ^\s*(\})*(\))*(;)*$$|\s*((log::|tracing::)?(trace|debug|info|w .PHONY: test test: - RUST_LOG=off cargo nextest run + RUST_LOG=off cargo nextest run --no-fail-fast .PHONY: clippy clippy: