#!/usr/bin/env bash set -euo pipefail echo "Running CityGrid tests..." export PYTHONPATH="${PYTHONPATH:+$PYTHONPATH:}/workspace/repo" pytest -q echo "Building Python package (for packaging sanity check)..." python3 -m build echo "All tests passed and package built."