#!/usr/bin/env bash
set -euo pipefail
echo "Running GridVerse MVP tests..."
pytest -q
echo "Running packaging check..."
python -m build
echo "All tests and build completed successfully."