8 lines
258 B
Python
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__), '..')))
|