Files
breakpilot-compliance/backend-compliance/mypy.ini
Sharang Parnerkar 4fa0dd6f6d refactor(backend/api): extract VVTService (Step 4 — file 5 of 18)
compliance/api/vvt_routes.py (550 LOC) -> 225 LOC thin routes + 475-line
VVTService. Covers the organization header, processing activities CRUD,
audit log, JSON/CSV export, stats, and version lookups for the Art. 30
DSGVO Verzeichnis.

Single-service split: organization + activities + audit + stats all
revolve around the same tenant's VVT document, and the existing test
suite (tests/test_vvt_routes.py — 768 LOC, tests/test_vvt_tenant_isolation.py
— 205 LOC) exercises them together.

Module-level helpers (_activity_to_response, _log_audit, _export_csv)
stay module-level in compliance.services.vvt_service and are re-exported
from compliance.api.vvt_routes so the two test files keep importing
from the old path.

Pydantic schemas already live in compliance.schemas.vvt from Step 3 —
no new schema file needed this round.

mypy.ini flips compliance.api.vvt_routes from ignore_errors=True to
False. Two SQLAlchemy Column[str] vs str dict-index errors fixed with
explicit str() casts on status/business_function in the stats loop.

Verified:
  - 242/242 pytest (173 core + 69 VVT integration) pass
  - OpenAPI 360/484 unchanged
  - mypy compliance/ -> Success on 128 source files
  - vvt_routes.py 550 -> 225 LOC
  - vvt_service.py 475 LOC (under 500 hard cap)
  - Hard-cap violations: 14 -> 13

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 19:50:40 +02:00

86 lines
3.1 KiB
INI

[mypy]
python_version = 3.12
strict = True
implicit_reexport = True
ignore_missing_imports = True
warn_unused_configs = True
exclude = (?x)(
^compliance/tests/
| ^compliance/data/
| ^compliance/scripts/
)
# Tests are not type-checked (legacy; will be tightened when TestClient-based
# integration tests land in Phase 1 Step 4 follow-up).
[mypy-compliance.tests.*]
ignore_errors = True
# ----------------------------------------------------------------------
# Phase 1 refactor policy:
# - compliance.domain / compliance.schemas : fully strict
# - compliance.api._http_errors : fully strict
# - compliance.services.<new_clean_arch_service> : strict (list explicitly)
# - compliance.repositories.* : strict with ORM arg-type
# ignore (see per-file)
# - compliance.db.* : loose (ORM models)
# - compliance.services.<legacy utility modules> : loose (pre-refactor)
# - compliance.api.<route files> : loose until Step 4
# ----------------------------------------------------------------------
# Legacy utility services that predate the Phase 1 refactor. Not touched
# by the clean-arch extraction. Left loose until their own refactor pass.
[mypy-compliance.services.ai_compliance_assistant]
ignore_errors = True
[mypy-compliance.services.audit_pdf_generator]
ignore_errors = True
[mypy-compliance.services.auto_risk_updater]
ignore_errors = True
[mypy-compliance.services.control_generator]
ignore_errors = True
[mypy-compliance.services.export_generator]
ignore_errors = True
[mypy-compliance.services.llm_provider]
ignore_errors = True
[mypy-compliance.services.pdf_extractor]
ignore_errors = True
[mypy-compliance.services.regulation_scraper]
ignore_errors = True
[mypy-compliance.services.report_generator]
ignore_errors = True
[mypy-compliance.services.seeder]
ignore_errors = True
[mypy-compliance.services.similarity_detector]
ignore_errors = True
[mypy-compliance.services.license_gate]
ignore_errors = True
[mypy-compliance.services.anchor_finder]
ignore_errors = True
[mypy-compliance.services.rag_client]
ignore_errors = True
# SQLAlchemy ORM layer: models use Column() rather than Mapped[T], so
# static analysis sees descriptors as Column[T] while runtime returns T.
# Loose for the whole db package until a future Mapped[T] migration.
[mypy-compliance.db.*]
ignore_errors = True
# Route files (Phase 1 Step 4 in progress): only the refactored ones are
# checked strictly via explicit extension of the strict scope in CI.
# Until each file is refactored, it stays loose.
[mypy-compliance.api.*]
ignore_errors = True
# Refactored route modules under Step 4 — override the blanket rule above.
[mypy-compliance.api.audit_routes]
ignore_errors = False
[mypy-compliance.api.banner_routes]
ignore_errors = False
[mypy-compliance.api.tom_routes]
ignore_errors = False
[mypy-compliance.api.company_profile_routes]
ignore_errors = False
[mypy-compliance.api.vvt_routes]
ignore_errors = False
[mypy-compliance.api._http_errors]
ignore_errors = False