wait_for_test_run
Waits for a BugBug test run to complete by polling its status, then returns the full test run results. Specify the run ID and optional timeout/polling intervals to monitor automated test execution.
Instructions
Waits until test run finished, returns full test run data as result
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pollIntervalSeconds | No | Polling interval in seconds (default: 10) | |
| runId | Yes | Test run UUID to wait for | |
| timeoutMinutes | No | Maximum time to wait in minutes (default: 30) |
Input Schema (JSON Schema)
{
"properties": {
"pollIntervalSeconds": {
"default": 10,
"description": "Polling interval in seconds (default: 10)",
"type": "number"
},
"runId": {
"description": "Test run UUID to wait for",
"type": "string"
},
"timeoutMinutes": {
"default": 30,
"description": "Maximum time to wait in minutes (default: 30)",
"type": "number"
}
},
"required": [
"runId"
],
"type": "object"
}