All checks were successful
Deploy mindnet to llm-node / deploy (push) Successful in 4s
7 lines
260 B
Python
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)
|