mirror of
https://github.com/j178/prek.git
synced 2026-04-25 02:11:36 +02:00
152c8d51d1
* Minor improvements to tests * fix python version match * Improve
19 lines
399 B
Makefile
19 lines
399 B
Makefile
lint:
|
|
cargo fmt
|
|
cargo clippy --all-targets --all-features --workspace -- -D warnings
|
|
|
|
test-unit:
|
|
cargo insta test --review --bin prefligit -- $F
|
|
|
|
test-all-unit:
|
|
cargo insta test --review --workspace --lib --bins
|
|
|
|
test-integration:
|
|
cargo insta test --review --test $T -- $F
|
|
|
|
test-all-integration:
|
|
cargo insta test --review --test '*'
|
|
|
|
test:
|
|
cargo test --all-targets --all-features --workspace
|