fe2f3ebe80
This makes it much easier to randomize the spec order
8 lines
135 B
Bash
Executable file
8 lines
135 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Exit if any subcommand fails
|
|
set -e
|
|
set -o pipefail
|
|
|
|
echo "crystal spec --order random $@"
|
|
crystal spec --order random $@
|