fix: hide model timeout in deploy review reports
All checks were successful
CD Pipeline / deploy (push) Successful in 1m4s

This commit is contained in:
ogt
2026-06-25 14:52:31 +08:00
parent 39ff5d5605
commit ef6c4b0abd
4 changed files with 26 additions and 8 deletions

View File

@@ -487,7 +487,9 @@ def test_openclaw_skips_111_and_cloud_by_default_when_gcp_pair_fails(monkeypatch
findings=[],
)
assert "本地降級報告" in result
assert "本地掃描報告" in result
assert "最後錯誤" not in result
assert "all hosts failed" not in result
assert [call["model"] for call in calls] == ["qwen2.5-coder:7b", "gemma3:4b"]
assert not any("192.168.0.111" in call["host"] for call in calls)
fake_claude.generate.assert_not_called()