Merge remote-tracking branch 'gitea-ssh/main' into codex/p0-product-manifest-standard-20260629

# Conflicts:
#	.gitea/workflows/cd.yaml
This commit is contained in:
Your Name
2026-06-29 13:51:38 +08:00
2 changed files with 23 additions and 0 deletions

View File

@@ -52,6 +52,20 @@ def test_p0_onboarding_readiness_sources_stay_on_controlled_runtime_profile() ->
assert f"src/services/{source}" in text
def test_iwooos_security_operation_api_stays_on_controlled_runtime_profile() -> None:
text = _workflow_text()
expected_sources = [
"apps/api/src/api/v1/iwooos.py)",
"apps/api/src/services/iwooos_security_operating_system.py)",
"apps/api/tests/test_iwooos_security_operating_system.py)",
"src/api/v1/iwooos.py",
"src/services/iwooos_security_operating_system.py",
"tests/test_iwooos_security_operating_system.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")