starfish_data_ai / tests /__init__.py
John-Jiang's picture
init commit
5301c48
import os
import sys
# Add workspace folders to PYTHONPATH
workspace_folders = [os.path.join(os.path.dirname(__file__), "..", "src"), os.path.dirname(os.path.dirname(__file__))]
for folder in workspace_folders:
if folder not in sys.path:
sys.path.insert(0, folder)
# This file is intentionally empty to make the directory a Python package