Jayant2304/commitment-os
0
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 