US09-05: Automate Documentation Acceptance (#111)
Some checks failed
Test / suites (push) Failing after 2m30s
Test / container (push) Failing after 5m38s
Test / documentation (push) Failing after 1m54s

This commit was merged in pull request #111.
This commit is contained in:
2026-08-24 00:22:59 +02:00
parent f1442527a2
commit 516f81c71e
20 changed files with 427 additions and 20 deletions

View File

@@ -16,12 +16,17 @@ import json
import re
from pathlib import Path
import pytest
from starlette.testclient import TestClient
from photo_pipeline.api.app import create_app
from photo_pipeline.api.security import DEFAULT_HEADERS
from photo_pipeline.config import Config
# Every check here belongs to the documentation gate (US09-05).
pytestmark = pytest.mark.phase_i
REPO = Path(__file__).resolve().parents[2]
DOCS = REPO / "docs"
VENDOR = REPO / "frontend" / "js" / "vendor"