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 383ba0e commit 1ebff64Copy full SHA for 1ebff64
Justfile
@@ -21,15 +21,15 @@ absolve:
21
22
clippy:
23
echo -e "\033[1;35m🔍 Running Clippy on all targets...\033[0m"
24
- cargo +nightly clippy --all-targets
+ cargo +nightly clippy --all-targets -- -D warnings
25
26
nextest:
27
echo -e "\033[1;33m🏃 Running all but doc-tests with nextest...\033[0m"
28
cargo +nightly nextest run
29
30
doc-tests:
31
echo -e "\033[1;36m📚 Running documentation tests...\033[0m"
32
- cargo +nightly test --doc
+ RUSTDOCFLAGS="-D warnings" cargo +nightly test --doc
33
34
miri:
35
echo -e "\033[1;31m🧪 Running tests under Miri...\033[0m"
0 commit comments