#!/usr/bin/env bash
set -euo pipefail
echo "== Running unit tests =="
pytest -q
echo "== Building package (pyproject) =="
python3 -m build 2>&1 | sed 's/^/BUILD: /'
echo "OK"