#!/usr/bin/env bash set -euo pipefail # Test script to verify unit tests and packaging before publishing. echo "Running unit tests..." pytest -q echo "Building wheel/static distribution..." python3 -m build echo "All tests passed and package built."