chore: forward-port alpha release fixes · openclaw/openclaw@c041a45
clawsweeper
·
2026-06-19
·
via Recent Commits to openclaw:main
File tree
extensions/qa-lab/src/live-transports/telegram
| Original file line number | Diff line number | Diff line change |
|---|
@@ -66,6 +66,7 @@ env:
|
66 | 66 | OCM_LINUX_X64_SHA256: b849b8de5d77e97e0df9319703254ae95e29d7f26a7552ea79bf173ff110ea0a |
67 | 67 | KOVA_REPOSITORY: openclaw/Kova |
68 | 68 | PERFORMANCE_MODEL_ID: gpt-5.5 |
| 69 | +KOVA_SCENARIO_TIMEOUT_MS: "300000" |
69 | 70 | |
70 | 71 | jobs: |
71 | 72 | kova: |
@@ -291,6 +292,7 @@ jobs:
|
291 | 292 | --auth "$AUTH_MODE" |
292 | 293 | --parallel 1 |
293 | 294 | --repeat "$repeat" |
| 295 | + --timeout-ms "$KOVA_SCENARIO_TIMEOUT_MS" |
294 | 296 | --report-dir "$REPORT_DIR" |
295 | 297 | --execute |
296 | 298 | --json |
@@ -361,6 +363,7 @@ jobs:
|
361 | 363 | - Kova repository: ${KOVA_REPOSITORY} |
362 | 364 | - Kova ref: ${KOVA_REF} |
363 | 365 | - Kova profile: ${PROFILE} |
| 366 | + - Kova scenario timeout: ${KOVA_SCENARIO_TIMEOUT_MS}ms |
364 | 367 | - Lane auth: ${AUTH_MODE} |
365 | 368 | - Lane model: ${PERFORMANCE_MODEL_ID} |
366 | 369 | - Lane repeat: ${repeat} |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -660,6 +660,9 @@ describe("telegram live qa runtime", () => {
|
660 | 660 | expect(repeatedSteps[2]?.expectReply).toBe(true); |
661 | 661 | expect(repeatedSteps[3]?.input).toBe("/commands@sut_bot"); |
662 | 662 | expect(repeatedSteps[3]?.expectReply).toBe(true); |
| 663 | +const commandsStep = requireScenario(scenarios, "telegram-commands-command").buildRun("sut_bot") |
| 664 | +.steps[0]; |
| 665 | +expect(commandsStep?.expectedTextIncludes).toEqual(["Commands (1/", "/session", "/stop"]); |
663 | 666 | const otherBotStep = requireScenario(scenarios, "telegram-other-bot-command-gating").buildRun( |
664 | 667 | "sut_bot", |
665 | 668 | ).steps[0]; |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -264,7 +264,7 @@ const TELEGRAM_QA_SCENARIOS: TelegramQaScenarioDefinition[] = [
|
264 | 264 | telegramQaStepRun({ |
265 | 265 | expectReply: true, |
266 | 266 | input: `/commands@${sutUsername}`, |
267 | | -expectedTextIncludes: ["Commands (1/", "/session", "/verbose"], |
| 267 | +expectedTextIncludes: ["Commands (1/", "/session", "/stop"], |
268 | 268 | }), |
269 | 269 | }, |
270 | 270 | { |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。