From 34a8894d7a621182b2c7e931760e9e9f769ba465 Mon Sep 17 00:00:00 2001 From: caiodallaqua Date: Wed, 17 Jan 2024 16:28:31 -0300 Subject: [PATCH] add conftest --- 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..06c0037 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,6 @@ +import sys +import os + +# Add the project root directory to the Python path. +project_root = os.path.abspath(os.path.join(os.path.dirname(__file__), '..')) +sys.path.insert(0, project_root) \ No newline at end of file