#!/usr/bin/env bash
set -euo pipefail
echo "Installing package in editable mode..."
python -m pip install -e . --quiet
echo "Running unit tests..."
pytest -q
echo "Building package..."
python -m build
echo "All tests passed and build completed."