#!/usr/bin/env bash
set -euo pipefail
export PYTHONPATH=$(pwd)
echo "Running tests..."
pytest -q
echo "Building package..."
python3 -m build
echo "All tests passed and package built."
exit 0