#!/usr/bin/env bash
set -euo pipefail
echo "Installing package in editable mode..."
python3 -m pip install -e .
echo "Running pytest..."
pytest -q
echo "Building package for verification..."
python3 -m build
echo "All done."