deltaforge-real-time-cross-.../test.sh

8 lines
242 B
Bash

#!/usr/bin/env bash
set -euo pipefail
echo "Running Python build and tests for DeltaForge MVP..."
python -m build >/dev/null 2>&1 || { echo "[build] failed"; exit 1; }
pytest -q || { echo "[tests] failed"; exit 1; }
echo "All tests passed."