clap/justfile
Pavan Kumar Sunkara b89163afb6 Update MSRV to 1.46
2020-11-28 11:58:28 +00:00

41 lines
992 B
Makefile

run-test TESTG TEST="":
cargo test --test {{TESTG}} -- {{TEST}}
debug TESTG TEST="":
cargo test --test {{TESTG}} --features debug -- {{TEST}}
run-tests:
cargo test --features "wrap_help yaml regex unstable"
@bench:
cargo bench
@lint:
rustup component add clippy
rustup component add rustfmt
cargo clippy --features "wrap_help yaml regex unstable" -- -D warnings
cargo fmt -- --check
clean:
cargo clean
find . -type f -name "*.orig" -exec rm {} \;
find . -type f -name "*.bk" -exec rm {} \;
find . -type f -name ".*~" -exec rm {} \;
top-errors NUM="95":
@cargo check 2>&1 | head -n {{NUM}}
count-errors:
@cargo check 2>&1 | grep -e '^error' | wc -l
find-errors:
@cargo check 2>&1 | grep --only-matching -e '-->[^:]*' | sort | uniq -c | sort -nr
count-warnings:
@cargo check 2>&1 | grep -e '^warning' | wc -l
find-warnings:
@cargo check 2>&1 | grep -A1 -e 'warning' | grep --only-matching -e '-->[^:]*' | sort | uniq -c | sort -nr
@count-failures:
./count-tests.sh