docs: classify env-driven tests as audit-only, legacy renderer tests as diagnostic

This commit is contained in:
Research Assistant 2026-06-13 16:41:38 +08:00
parent de585b96d4
commit ab54d81caa
3 changed files with 26 additions and 0 deletions

View file

@ -1,3 +1,14 @@
"""Production-path contract audit for real OCR papers.
Classification: secondary audit coverage.
Primary regression gate is tests/test_ocr_real_paper_regressions.py
(spec-contract + fixture-backed production-path replay).
These tests validate broader real-paper drift but require
PAPERFORGE_REAL_OCR_VAULT env; they are not the deterministic
first-line gate.
"""
from __future__ import annotations
import json

View file

@ -1,3 +1,10 @@
"""Reader-figure audit for real OCR papers.
Classification: secondary audit coverage.
Primary regression gate is tests/test_ocr_real_paper_regressions.py.
Requires PAPERFORGE_REAL_OCR_VAULT env.
"""
from __future__ import annotations
import json

View file

@ -1,3 +1,11 @@
"""Legacy page-local renderer tests.
Classification: diagnostic only.
render_page_blocks() is not the final fulltext truth for OCR-v2.
Primary production path is render_fulltext_markdown() in ocr_render.py.
These tests exist for backward compatibility and legacy trace interpretation.
"""
from __future__ import annotations
from pathlib import Path