climate-risk-engine / tests /conftest.py
jtlevine's picture
Add LSTM neural model, ERA5 data, FAISS+BM25 RAG, Neon DB, eval suite; de-jargon frontend
f2b0895
raw
history blame contribute delete
287 Bytes
"""Shared test configuration for the Climate Risk Engine evaluation suite."""
import sys
from pathlib import Path
# Ensure the project root is importable
PROJECT_ROOT = Path(__file__).resolve().parents[1]
if str(PROJECT_ROOT) not in sys.path:
sys.path.insert(0, str(PROJECT_ROOT))