abstreet/test_all.sh

8 lines
114 B
Bash
Executable File

#!/bin/bash
if [ "$1" = "--fast" ]; then
cargo test --no-fail-fast
else
cargo test --release --no-fail-fast
fi