"""Conftest for event tests - sets up imports early"""

import sys
from pathlib import Path

# Add ws directory to Python path BEFORE any imports happen
ws_dir = Path(__file__).parent.parent.parent.parent / 'ws'
if str(ws_dir) not in sys.path:
    sys.path.insert(0, str(ws_dir))
