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