clap/justfile

42 lines
974 B
Makefile
Raw Normal View History

run-test TESTG TEST="":
2020-02-03 10:29:57 +00:00
cargo test --test {{TESTG}} -- {{TEST}}
debug TESTG TEST="":
2020-02-03 10:29:57 +00:00
cargo test --test {{TESTG}} --features debug -- {{TEST}}
run-tests:
2021-03-13 06:10:56 +00:00
cargo test --features "wrap_help yaml regex"
@bench:
cargo bench
2016-11-20 18:53:38 +00:00
@lint:
rustup component add clippy
rustup component add rustfmt
2021-03-13 06:10:56 +00:00
cargo clippy --features "wrap_help yaml regex" -- -D warnings
2020-01-31 10:27:37 +00:00
cargo fmt -- --check
2016-11-20 19:51:08 +00:00
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:
2020-05-01 08:52:04 +00:00
./count-tests.sh