list_test_runs
Find and retrieve test runs in a project using filters for name, key, status, assignee, or incomplete completion.
Instructions
Retrieves list of test runs of a project with support for various filters.
Args: filter_project: specifies the project ID to filter the test runs associated with a particular project filter_name: to filter test runs with name containing the specified value filter_key: to filter test runs with key containing the specified value filter_status: to filter test runs by their status. Two supported values 'active' or 'archived' filter_assigned_to: id of the user to whom test runs are assigned filter_incomplete: if True, fetches all pages and returns only test runs that are not 100% complete, with a trimmed payload (id, key, name, percentDone, counts, assignee, deadline, status). When False (default), returns the raw paginated response from the Tuskr API. page: controls number of records in output, every page contains 100 records. Default is 1. Ignored when filter_incomplete is True.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| filter_key | No | ||
| filter_name | No | ||
| filter_status | No | ||
| filter_project | Yes | ||
| filter_incomplete | No | ||
| filter_assigned_to | No |