make sure rust tests rerun on source change; don't hide output

This commit is contained in:
Damien Elmes 2020-01-07 09:23:55 +10:00
parent da31bdf5b6
commit 53692567e8

View File

@ -31,8 +31,8 @@ RUST_TOOLCHAIN := $(shell cat rust-toolchain)
rustup component add clippy-preview --toolchain $(RUST_TOOLCHAIN)
@touch $@
.build/check: .build/rs-tools
cargo test
.build/check: .build/rs-tools $(ALL_SOURCE)
cargo test -- --nocapture
cargo fmt -- --check
cargo clippy -- -D warnings
@touch $@