stream-bot/tests/__init__.py
Joey Yakimowich-Payne ec1c5958ce Initial working version
2025-05-14 17:45:07 -06:00

8 lines
258 B
Python

"""
Tests package initialization - adds the project root to the Python path
"""
import os
import sys
# Add the parent directory to Python's path so 'src' module can be found
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))