cube-tube/run_tests

11 lines
215 B
Text
Raw Normal View History

2023-03-08 03:06:29 +00:00
#!/usr/bin/env sh
set -e
rm -f test-failures.txt
if ! ../dragonruby . --eval app/tests.rb --no-tick --exit-on-fail; then
echo "🙀 tests failed!"
cat test-failures.txt
exit 1
else
echo "🪩 tests passed!"
fi