#!/usr/bin/env bash set -euo pipefail cd "$(dirname "$0")/.." echo "== Compile Python ==" python -m compileall app echo "" echo "== Tests ==" python -m pytest -q echo "" echo "== Health check ==" curl -s http://127.0.0.1:8000/api/v1/health echo "" echo "" echo "== Runtime config ==" curl -s http://127.0.0.1:8000/api/v1/runtime-config echo ""