From 5136656341ca56b21f1cbe5fa5978ddfd8f1f57f Mon Sep 17 00:00:00 2001 From: Thorkil Vaerge Date: Wed, 22 May 2024 11:42:14 +0200 Subject: [PATCH] devops: Add doctests to Makefile recipe `nextest` doesn't run doc-tests. They need to be run separately. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 23972208..3aa934a0 100644 --- a/Makefile +++ b/Makefile @@ -57,6 +57,7 @@ test: export RUST_BACKTRACE = 1 test: $(info RUSTFLAGS is $(RUSTFLAGS)) cargo nextest r + cargo test --doc bench: $(info RUSTFLAGS is $(RUSTFLAGS))