6 lines
93 B
Bash
Executable file
6 lines
93 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Exit if any subcommand fails
|
|
set -e
|
|
|
|
cargo test --release -- --test-threads=1
|