import os
import sys

# Make the repo root importable so tests can `import strategies.strategy_mlp_scores`
# and `import config` regardless of where pytest is invoked from.
REPO_ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
if REPO_ROOT not in sys.path:
    sys.path.insert(0, REPO_ROOT)
