File size: 249 Bytes
108e7a1 |
1 2 3 4 5 6 7 8 9 10 |
"""
Configuration file for pytest.
This file modifies sys.path to allow imports from the parent directory.
"""
import sys
import os
# Add the parent directory to sys.path
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|