From 1e7d5c2705161a9a5f00ea986d2053f84b202964 Mon Sep 17 00:00:00 2001 From: Boyu Yang Date: Tue, 2 Apr 2024 16:38:52 +0800 Subject: [PATCH] ci: remove non-existent tests in `make test` --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b584daf..bbe8e59 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ CARGO := @cargo -NEXTEST_RUN_ARGS := --no-fail-fast --success-output immediate --failure-output final +NEXTEST_RUN_ARGS := --no-fail-fast --success-output never --failure-output final # # Check @@ -16,7 +16,7 @@ clippy: ${CARGO} clippy --workspace --tests -- --deny warnings test: - ${CARGO} nextest run ${NEXTEST_RUN_ARGS} --workspace types::extension::packed::test_service + ${CARGO} nextest run ${NEXTEST_RUN_ARGS} --workspace # # Build