get_test_results
List recent test results for a project, optionally filtering by pass/fail status and limiting the number returned.
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 |
|---|---|---|---|
| project_name | Yes | The project name | |
| passed | No | Filter: only passed (true) or only failed (false). Omit for all. | |
| limit | No | Max rows (default 50, max 200) |