mindnet/tests/conftest.py
Lars 9bbcc0952b
All checks were successful
Deploy mindnet to llm-node / deploy (push) Successful in 4s
tests/conftest.py hinzugefügt
2025-10-07 13:27:51 +02:00

7 lines
260 B
Python

# Sorgt dafür, dass 'app' als Paket importierbar ist,
# wenn pytest aus dem Repo-Root oder aus 'tests/' gestartet wird.
import os, sys
ROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
if ROOT not in sys.path:
sys.path.insert(0, ROOT)