platform-core/tests/conftest.py
ValueOn AG 4a60086c80
Some checks failed
Deploy Plattform-Core (Int) / test (push) Failing after 15s
Deploy Plattform-Core (Int) / deploy (push) Has been skipped
cp adapted to 2026 poweron
2026-06-09 09:53:31 +02:00

14 lines
359 B
Python

# Copyright (c) 2026 PowerOn AG
# All rights reserved.
"""
Pytest configuration file for test suite.
Ensures proper Python path setup for importing modules.
"""
import sys
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))