Update testing documentation and improve test structure
All checks were successful
Test pipeline / test (push) Successful in 12s

This commit is contained in:
Alexander Minges 2025-05-20 15:17:18 +02:00
parent 1c84cae93b
commit eb270cba9b
Signed by: Athemis
SSH key fingerprint: SHA256:TUXshgulbwL+FRYvBNo54pCsI0auROsSEgSvueKbkZ4
9 changed files with 617 additions and 20 deletions

8
tests/conftest.py Normal file
View file

@ -0,0 +1,8 @@
import os
import sys
# Get the path to the parent directory of tests
parent_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
# Add the parent directory to sys.path
sys.path.insert(0, parent_dir)