#!/usr/bin/env bash set -euo pipefail echo "Running unit tests..." export PYTHONPATH="$(pwd)" pytest -q echo "Running build verification..." python3 -m build echo "All checks passed."