Files
clevercloud-storage/conftest.py
2025-09-11 18:14:14 +01:00

8 lines
202 B
Python

import os
import sys
# Add the src directory to the Python path
src_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "src"))
if src_path not in sys.path:
sys.path.insert(0, src_path)