"""Local conftest for the harness internals unit tests. Adds `e2e/` to sys.path so the unit tests can `from runner.helpers.geo import ...` without forcing the project's main pyproject `pythonpath` to include another src tree. """ from __future__ import annotations import sys from pathlib import Path _E2E_ROOT = Path(__file__).resolve().parents[1] if str(_E2E_ROOT) not in sys.path: sys.path.insert(0, str(_E2E_ROOT))