Files
roa2web-service-auto/deploy-package-20260223-151231/backend/scripts/whatsapp_import/conftest.py
Claude Agent 8bc567a9c5 fix telegram
2026-02-23 15:12:33 +00:00

14 lines
307 B
Python

"""
Root pytest configuration for ROA2WEB.
Ensures proper Python path setup for all test imports.
"""
import sys
from pathlib import Path
# Add project root to Python path at import time
project_root = Path(__file__).parent
if str(project_root) not in sys.path:
sys.path.insert(0, str(project_root))