fix(cd): keep dr escrow checklist on controlled profile
Some checks failed
CD Pipeline / workflow-shape (push) Successful in 0s
CD Pipeline / cancel-stale-cd (push) Has been skipped
CD Pipeline / tests (push) Successful in 24s
CD Pipeline / post-deploy-checks (push) Has been cancelled
CD Pipeline / build-and-deploy (push) Has been cancelled

This commit is contained in:
Your Name
2026-06-29 14:04:57 +08:00
parent 4defe99bd8
commit c98e6d5e53
2 changed files with 19 additions and 0 deletions

View File

@@ -71,6 +71,18 @@ def test_ai_autonomous_runtime_control_stays_on_controlled_runtime_profile() ->
assert source in text
def test_dr_escrow_checklist_stays_on_controlled_runtime_profile() -> None:
text = _workflow_text()
expected_sources = [
"scripts/reboot-recovery/dr-escrow-evidence-checklist.py)",
"scripts/reboot-recovery/tests/test_dr_escrow_evidence_checklist.py)",
"../../scripts/reboot-recovery/dr-escrow-evidence-checklist.py",
"../../scripts/reboot-recovery/tests/test_dr_escrow_evidence_checklist.py",
]
for source in expected_sources:
assert source in text
def test_controlled_runtime_skips_b5_before_docker_socket_use() -> None:
text = _workflow_text()
b5_start = text.index("- name: Integration Tests (B5")