diff options
| author | Stefan Kreutz <mail@skreutz.com> | 2026-04-21 18:47:52 +0200 |
|---|---|---|
| committer | Stefan Kreutz <mail@skreutz.com> | 2026-04-21 18:47:52 +0200 |
| commit | 6512b3d1b3badb6e349015f771901158432e30f0 (patch) | |
| tree | 171ae3862b5ba19985c73682a2e92a2df572786a /script | |
| parent | dafa7435847be899debb99efc1f087c2bd7548f7 (diff) | |
| download | wpa-psk-6512b3d1b3badb6e349015f771901158432e30f0.tar.gz | |
Skip cargo test in favor of clippy only
Diffstat (limited to 'script')
| -rwxr-xr-x | script/check | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/script/check b/script/check index 9913d80..948b5d9 100755 --- a/script/check +++ b/script/check @@ -5,10 +5,9 @@ set -o nounset set -o xtrace cargo fmt --all --check -cargo check --workspace --all-targets --all-features +cargo clippy --workspace --all-targets --all-features -- --deny warnings cargo build --workspace --all-targets --all-features cargo test --workspace --all-targets --all-features -cargo clippy --workspace --all-targets --all-features -- --deny warnings env RUSTDOCFLAGS="-Dwarnings" \ cargo doc --all-features --no-deps --document-private-items cargo audit |