"""Shared pytest fixtures for ci_orchestrator unit tests.""" from __future__ import annotations import sys from pathlib import Path # Ensure src/ is on sys.path so `import ci_orchestrator` works without install. _SRC = Path(__file__).resolve().parents[2] / "src" if str(_SRC) not in sys.path: sys.path.insert(0, str(_SRC))