CoolFace
Apppublic

Jayant2304/commitment-os

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
conftest.py11 linesDownload Raw Back to root
1"""Pytest configuration — ensures the project root is on sys.path for all tests."""2 3from __future__ import annotations4 5import sys6from pathlib import Path7 8PROJECT_ROOT = str(Path(__file__).resolve().parent)9if PROJECT_ROOT not in sys.path:10    sys.path.insert(0, PROJECT_ROOT)11