7 lines
143 B
Bash
7 lines
143 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Start test if one of the files was modified
|
||
|
|
cargo install cargo-watch
|
||
|
|
|
||
|
|
RUST_BACKTRACE=full cargo watch -x "test -- --nocapture"
|