From 7e08de59e96b1f0f0211d851cd55f390b82c720d Mon Sep 17 00:00:00 2001 From: Corvo <60719165+brothercorvo@users.noreply.github.com> Date: Wed, 18 Jun 2025 11:24:56 -0300 Subject: [PATCH] Fix module import in tests --- tests/__init__.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 tests/__init__.py diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..52a6f32 --- /dev/null +++ b/tests/__init__.py @@ -0,0 +1 @@ +import os, sys; sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))