Files
eth_hedge_sim/backend/tests/conftest.py
T
2026-07-24 16:33:25 +08:00

9 lines
189 B
Python

from __future__ import annotations
import sys
from pathlib import Path
BACKEND = Path(__file__).resolve().parents[1]
if str(BACKEND) not in sys.path:
sys.path.insert(0, str(BACKEND))