|
#!/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 (python -m build)..."
|
|
python3 -m build
|
|
|
|
echo "All tests passed and build succeeded."
|