Files
live-voice-chat/conftest.py
2026-04-12 04:11:52 -04:00

12 lines
281 B
Python

"""Pytest configuration.
Ensures the project root is on ``sys.path`` so tests can import ``server.*``
without installing the project as a package.
"""
import os
import sys
_ROOT = os.path.dirname(os.path.abspath(__file__))
if _ROOT not in sys.path:
sys.path.insert(0, _ROOT)