run privacy and renderer probes in release gate

This commit is contained in:
732642856
2026-07-14 13:47:30 +08:00
parent d3003ddea1
commit 997cc8751f
4 changed files with 19 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
from pathlib import Path
def test_release_profile_requires_privacy_and_renderer_probes() -> None:
source = (Path(__file__).resolve().parents[1] / "scripts" / "run_quality_gate.py").read_text(encoding="utf-8")
assert '"scripts/public_release_privacy_scan.py", "--json"' in source
assert '"scripts/report_renderer_isolation_poc.py", "--strict"' in source
assert '"scripts/three_engine_parity_replay_validator.py"' in source