idea98-algeiot-algebraic-or.../test.sh

11 lines
223 B
Bash
Executable File

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