Spaces:
Sleeping
Sleeping
File size: 216 Bytes
e1a9577 | 1 2 3 4 5 6 | import os, sys
ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", ".."))
if ROOT not in sys.path:
sys.path.insert(0, ROOT)
print("✅ conftest.py ready — sys.path patched for pytest imports")
|