From ea99a075efdf463ccd553ece526529bac42a54cc Mon Sep 17 00:00:00 2001 From: Ivan Gabriele Date: Tue, 5 Mar 2024 00:59:13 +0100 Subject: [PATCH] build(makefile): remove wrong --nocapture option from test-doc command --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c290519..fe0e781 100644 --- a/Makefile +++ b/Makefile @@ -40,6 +40,6 @@ test: test-cover: @$(source_env_if_not_ci) && cargo tarpaulin --frozen --out Xml test-doc: - @$(source_env_if_not_ci) && cargo test --doc --nocapture --no-fail-fast + @$(source_env_if_not_ci) && cargo test --doc --no-fail-fast test-watch: @$(source_env_if_not_ci) && cargo watch -x "test -- --nocapture"