#!/usr/bin/env bash set -euo pipefail echo "Running unit tests (pytest) and packaging check..." pytest -q echo "Running build (python -m build) to verify packaging..." python3 -m build echo "OK: Tests and packaging succeeded."