routeur_ia_api / tests /conftest.py
Cyril Dupland
Enhance PDF generation and update configurations: Add PDF_LOGO_PATH to .env.example, include markdown-pdf in requirements.txt, and refactor PDF generation logic to support logo integration. Introduce tests for PDF generation from Markdown input and update summarizer agent to streamline export functionality.
3cd0aad
raw
history blame
202 Bytes
"""Pytest configuration and fixtures."""
import sys
from pathlib import Path
# Add project root to path so "from tools.xxx" imports work
sys.path.insert(0, str(Path(__file__).resolve().parent.parent))