diff --git a/python/tests/conftest.py b/python/tests/conftest.py new file mode 100644 index 0000000..fb20192 --- /dev/null +++ b/python/tests/conftest.py @@ -0,0 +1,8 @@ +import sys +from pathlib import Path + +# Ensure package root is importable +ROOT = Path(__file__).resolve().parents[1] +if str(ROOT) not in sys.path: + sys.path.insert(0, str(ROOT)) +