Files
geointel/scripts/verify_golden_qa_benchmark.sh
T
Codex a28e516e17
GeoIntel CI / docs-smoke (push) Has been cancelled
GeoIntel CI / contract-smoke (push) Has been cancelled
Harden golden QA readiness gate
2026-06-17 05:56:03 +02:00

24 lines
571 B
Bash

#!/usr/bin/env bash
set -euo pipefail
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cd "$ROOT"
if [ -z "${PYTHON_BIN:-}" ]; then
PYTHON_BIN=""
for candidate in python3 python.exe python; do
if command -v "${candidate}" >/dev/null 2>&1 && "${candidate}" -c "import sys" >/dev/null 2>&1; then
PYTHON_BIN="${candidate}"
break
fi
done
fi
if [ -z "${PYTHON_BIN:-}" ]; then
echo "No usable python interpreter found" >&2
exit 1
fi
echo "== GeoIntel golden QA/QC benchmark =="
"${PYTHON_BIN}" scripts/run_golden_qa_benchmark.py --json