#!/usr/bin/env bash
set -euo pipefail
echo "Running unit tests (pytest) ..."
pytest -q
echo "Building package with setuptools..."
python3 -m build
echo "All tests passed and package built."