#!/usr/bin/env bash set -euo pipefail echo "Running unit tests for GuardRail.Space MVP..." python3 -m unittest discover -s tests -p 'test_*.py' echo "All tests passed."