forked from toolshed/abra
12 lines
153 B
Bash
Executable File
12 lines
153 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
for f in $(find ./tests/integration -name "*.bats"); do
|
|
bats -Tp "$f"
|
|
res=$?
|
|
if [[ "$res" -ne 0 ]]; then
|
|
exit 1
|
|
fi
|
|
done
|