Spaces:
Sleeping
Sleeping
File size: 417 Bytes
2043afa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/usr/bin/env bash
# Run validation: tests, server smoke test, and heuristic baseline
set -euo pipefail
cd "$(dirname "$0")/.."
echo "=== Running unit tests ==="
PYTHONPATH=backend/src python3 -m pytest backend/src/polypharmacy_env/tests/ -v
echo ""
echo "=== Running heuristic baseline ==="
PYTHONPATH=backend/src python3 -m polypharmacy_env.baselines.heuristic_agent
echo ""
echo "=== Validation complete ==="
|