1
0
mirror of https://github.com/j178/prek.git synced 2026-04-25 02:11:36 +02:00
Files
Jo 152c8d51d1 Fix python version matching (#275)
* Minor improvements to tests

* fix python version match

* Improve
2025-07-30 14:27:51 +08:00

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