Files
geointel/geointel/scripts/smoke_contracts.py
T
Jens 21015757bd
GeoIntel release gates / Compile, test, contracts and builds (push) Canceled after 0s
GeoIntel release gates / Python and npm vulnerability policy (push) Canceled after 0s
GeoIntel release gates / GIS image, SBOM and container scan (push) Canceled after 0s
Update
2026-07-27 23:13:09 +02:00

6 lines
282 B
Python

from pathlib import Path
ROOT = Path(__file__).resolve().parents[1]
missing=[d for d in ["contracts/api","contracts/database","contracts/events"] if not (ROOT/d).exists()]
if missing: raise SystemExit("Missing contract directories: "+", ".join(missing))
print("Contracts smoke OK")