File size: 436 Bytes
4058302 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | """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")
|