run-tests.sh 319 B

12345678910111213141516
  1. #!/usr/bin/env bash
  2. # Run all Antigravity (agy) integration tests.
  3. set -euo pipefail
  4. SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
  5. echo "=== Antigravity integration tests ==="
  6. for t in "$SCRIPT_DIR"/test-*.sh; do
  7. echo
  8. echo ">>> $t"
  9. bash "$t"
  10. done
  11. echo
  12. echo "=== All Antigravity tests passed ==="