#!/usr/bin/env bash
set -euo pipefail
# Run Python tests and packaging to validate MVP readiness
echo "Running Python tests..."
pytest -q
echo "Building package to validate metadata..."
python3 -m build
echo "All tests passed and package built."