From 997d72003c2cd1ad439e78215502330abb965d9f Mon Sep 17 00:00:00 2001 From: Lucas Garron Date: Wed, 10 Jan 2024 00:14:47 -0800 Subject: [PATCH] [Makefile] Run doctests separately using `cargo test`. This is a workaround for https://github.com/nextest-rs/nextest/issues/16 --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index d4613ad..cad5bbf 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,8 @@ build: .PHONY: test test: cargo bin cargo-nextest run --all + @# `cargo-nextest` doesn't support doctests. + cargo test --doc .PHONY: lint lint: