Fix research
This commit is contained in:
26
scripts/run_all.sh
Executable file
26
scripts/run_all.sh
Executable file
@@ -0,0 +1,26 @@
|
||||
#!/bin/bash
|
||||
# Godot Test Runner - All Tests
|
||||
# Usage: ./scripts/run_all.sh
|
||||
|
||||
set -e
|
||||
|
||||
GODOT_BIN="${GODOT_BIN:-godot}"
|
||||
|
||||
echo "=========================================="
|
||||
echo "Running All Tests"
|
||||
echo "=========================================="
|
||||
echo ""
|
||||
|
||||
"$GODOT_BIN" --headless --path . -s res://tests/test_runner.gd
|
||||
EXIT_CODE=$?
|
||||
|
||||
echo ""
|
||||
echo "=========================================="
|
||||
if [ $EXIT_CODE -eq 0 ]; then
|
||||
echo "✓ All tests passed"
|
||||
else
|
||||
echo "✗ Some tests failed"
|
||||
fi
|
||||
echo "=========================================="
|
||||
|
||||
exit $EXIT_CODE
|
||||
Reference in New Issue
Block a user