Expand golden QA benchmark scenarios
GeoIntel CI / docs-smoke (push) Has been cancelled
GeoIntel CI / contract-smoke (push) Has been cancelled

This commit is contained in:
Codex
2026-06-18 21:46:19 +02:00
parent 5128b9ced0
commit c85953f389
14 changed files with 417 additions and 28 deletions
+9 -1
View File
@@ -7,11 +7,19 @@ 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
if command -v "${candidate}" >/dev/null 2>&1 && "${candidate}" -c "import sys, geoalchemy2" >/dev/null 2>&1; then
PYTHON_BIN="${candidate}"
break
fi
done
if [ -z "${PYTHON_BIN}" ]; then
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
fi
if [ -z "${PYTHON_BIN:-}" ]; then