"""Make the pilot package roots available to every categorized test.""" from __future__ import annotations import os import sys PILOT_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", "pilot")) if PILOT_ROOT not in sys.path: sys.path.insert(0, PILOT_ROOT)