Add test folder

This commit is contained in:
ekzyis 2021-09-24 21:57:25 +02:00
parent a3d440ad75
commit bf82306cf0
1 changed files with 6 additions and 0 deletions

6
test/conftest.py Normal file
View File

@ -0,0 +1,6 @@
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)