#!/usr/bin/env bash
set -euo pipefail
echo "Running tests with pytest..."
pytest -q
echo "Building package..."
python3 -m build --wheel --no-isolation
echo "All tests and build succeeded."