mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-12-01 02:33:54 +03:00
8 lines
114 B
Bash
Executable File
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
|