From f1072cb7b0a9b4829f81a876985c038f8106a950 Mon Sep 17 00:00:00 2001 From: Luna Date: Mon, 13 Apr 2026 20:38:52 +0200 Subject: [PATCH] Fix pytest import path --- tests/conftest.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tests/conftest.py diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 0000000..17cdbe1 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,6 @@ +from pathlib import Path +import sys + +ROOT = Path(__file__).resolve().parents[1] +if str(ROOT) not in sys.path: + sys.path.insert(0, str(ROOT))