1
0
mirror of https://github.com/pumpitupdev/pumptools.git synced 2024-12-11 06:16:00 +01: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