get_test_results
Retrieve past test outcomes for a project, newest first. Filter by pass/fail status or set a custom result limit to quickly recall which tests succeeded or failed without querying conversation memory.
Instructions
List recent test results for a project, newest first.
Pairs with save_test_result — use this to recall past test outcomes without having to query the conversational memory layer.
USAGE:
Latest 50 results: get_test_results({ project_name: "polymathematics" })
Only failures: get_test_results({ project_name, passed: false })
Custom limit: get_test_results({ project_name, limit: 10 })
RETURNS:
results[] — each with id, test_suite, passed, failure_details, updated_at
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max rows (default 50, max 200) | |
| passed | No | Filter: only passed (true) or only failed (false). Omit for all. | |
| project_name | Yes | The project name |