#!/usr/bin/env bash
set -euo pipefail
echo "Installing package in editable mode..."
python3 -m pip install -e .
echo "Running unit tests..."
pytest -q
echo "Running packaging build..."
python3 -m build