refac: project dir struct + tests

This commit is contained in:
Florian Sylvain
2025-03-28 01:56:15 +01:00
parent fa1ef33d2f
commit 6982a5b97e
12 changed files with 197 additions and 7 deletions
+7
View File
@@ -0,0 +1,7 @@
"""
Add the parent directory to the sys.path so the tests can import the modules from the parent dir.
"""
import os
import sys
sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))