From dbac27d97e3e44e12dd19ad47b484a2e1bc1a7ee Mon Sep 17 00:00:00 2001 From: Vincent Herlemont Date: Sun, 17 Dec 2023 10:37:51 +0100 Subject: [PATCH] ci: cargo test --- justfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index e0c6eb6..44203d5 100644 --- a/justfile +++ b/justfile @@ -51,7 +51,10 @@ test_bincode_2_rc: test_postcard_1_0: @just _tests_crate '--features postcard_1_0' -test_all: test_no_default test_default test_bincode_1_3 test_bincode_2_rc test_postcard_1_0 +test_docs: + cargo test --doc --features bincode_2_rc + +test_all: test_docs test_no_default test_default test_bincode_1_3 test_bincode_2_rc test_postcard_1_0 bench_overhead: cargo bench --bench overhead