mirror of
https://github.com/extrawurst/gitui.git
synced 2024-11-22 11:03:25 +03:00
41a52cfc8c
* make test run in parallel again * better test structure
20 lines
316 B
Makefile
20 lines
316 B
Makefile
|
|
debug:
|
|
GITUI_LOGGING=true cargo run --features=timing
|
|
|
|
test:
|
|
cargo test --workspace
|
|
|
|
clippy:
|
|
cargo clean
|
|
cargo clippy --all-features
|
|
|
|
clippy-pedantic:
|
|
cargo clean
|
|
cargo clippy --all-features -- -W clippy::pedantic
|
|
|
|
install:
|
|
cargo install --path "."
|
|
|
|
install-debug:
|
|
cargo install --features=timing --path "."
|