robotproof-studio-verifiabl.../test.sh

14 lines
258 B
Bash

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