14 lines
315 B
Python
14 lines
315 B
Python
"""
|
|
Pytest configuration file for test suite.
|
|
Ensures proper Python path setup for importing modules.
|
|
"""
|
|
|
|
import sys
|
|
import os
|
|
from pathlib import Path
|
|
|
|
# Add gateway directory to Python path
|
|
gateway_dir = Path(__file__).parent.parent
|
|
if str(gateway_dir) not in sys.path:
|
|
sys.path.insert(0, str(gateway_dir))
|
|
|