AICertification/app/flask-postgres/tests/conftest.py
2026-04-02 18:20:38 +02:00

13 lines
273 B
Python

import os
import sys
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
APP_DIR = os.path.join(BASE_DIR, "app")
if APP_DIR not in sys.path:
sys.path.insert(0, APP_DIR)
if BASE_DIR not in sys.path:
sys.path.insert(0, BASE_DIR)
os.environ["LOG_DIR"] = "./logs"