Files
jobs/tests/conftest.py
georg.sinn-schirwitz 23a67d7fe1 initial project commit
2025-08-29 15:07:58 +02:00

8 lines
214 B
Python

import sys
from pathlib import Path
# Ensure project root is on sys.path so `web` package can be imported
root = Path(__file__).resolve().parents[1]
if str(root) not in sys.path:
sys.path.insert(0, str(root))