From bf82306cf0b79383146480100d9916a4bbe98f3e Mon Sep 17 00:00:00 2001 From: ekzyis Date: Fri, 24 Sep 2021 21:57:25 +0200 Subject: [PATCH] Add test folder --- test/conftest.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test/conftest.py diff --git a/test/conftest.py b/test/conftest.py new file mode 100644 index 0000000..bdfc4e1 --- /dev/null +++ b/test/conftest.py @@ -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)