SwapnilPatil28's picture
Major Update 1 - Add server, domain, client, models, and tests
4058302 verified
raw
history blame contribute delete
436 Bytes
"""Pytest configuration.
Adds the repository root to ``sys.path`` so tests can import modules without
installing the package (matching the in-repo import layout the server uses).
"""
from __future__ import annotations
import os
import sys
from pathlib import Path
ROOT = Path(__file__).resolve().parent.parent
if str(ROOT) not in sys.path:
sys.path.insert(0, str(ROOT))
os.environ.setdefault("ENV_STRUCTURED_LOGGING", "false")