"""sys.path bootstrap for cli tests."""
from __future__ import annotations

import sys
import pathlib

sys.path.insert(
    0, str(pathlib.Path(__file__).resolve().parent.parent.parent.parent)
)
from recoil.core.paths import ensure_pipeline_importable  # noqa: E402

ensure_pipeline_importable()
