exchange-data-manager/tests/conftest.py

11 lines
250 B
Python

"""Pytest configuration and shared fixtures."""
import pytest
import sys
from pathlib import Path
# Add src to path for imports
src_path = Path(__file__).parent.parent / "src"
if str(src_path) not in sys.path:
sys.path.insert(0, str(src_path))