musicube/test/conftest.py

7 lines
200 B
Python
Raw Normal View History

2021-09-24 19:57:25 +00:00
import sys
from pathlib import Path
# Add source to PATH such that imports within src modules are properly resolved.
SRC_PATH = str(Path(__file__).parent / '..' / 'src')
sys.path.insert(0, SRC_PATH)