added circle CI config with basic unit tests

This commit is contained in:
xerexoded
2024-06-09 22:49:24 +05:30
committed by Tim Rae
parent ced8db44fe
commit 692939cd0e
7 changed files with 206 additions and 2 deletions

5
tests/conftest.py Normal file
View File

@@ -0,0 +1,5 @@
import sys
import os
# Add the src directory to the Python path
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "../src")))