Files
musicdl-catalog-sync-suite/Music_Server/tests/__init__.py
T

7 lines
161 B
Python

import sys
from pathlib import Path
SRC_DIR = Path(__file__).resolve().parents[1] / "src"
if str(SRC_DIR) not in sys.path:
sys.path.insert(0, str(SRC_DIR))