1
0
mirror of https://github.com/pumpitupdev/pumptools.git synced 2024-09-24 03:18:25 +02:00
pumptools/scripts/run-tests.sh

13 lines
171 B
Bash
Executable File

#!/usr/bin/env bash
for i in "$1"/bin/test-*; do
test="$(basename $i)"
echo "Running test $test..."
"$i" || exit 1
done
echo "All tests successful"
exit 0