We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e4308d commit c7727e3Copy full SHA for c7727e3
Makefile
@@ -42,9 +42,11 @@ check-toml:
42
43
check: check-fmt check-clippy cargo-sort check-toml
44
45
-unit-test:
+doc-test:
46
+ cargo test --no-fail-fast --doc --all-features --workspace
47
+
48
+unit-test: doc-test
49
cargo test --no-fail-fast --lib --all-features --workspace
50
-test:
- cargo test --no-fail-fast --all-targets --all-features --workspace
- cargo test --no-fail-fast --doc --all-features --workspace
51
+test: doc-test
52
+ cargo test --no-fail-fast --all-targets --all-features --workspace
0 commit comments