""" 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__))))