# tuist test list Lists all test runs in a project. ## Arguments ### project `Optional` The full handle of the project. Must be in the format of account-handle/project-handle. ```bash tuist test list --project [project] tuist test list -P [project] ``` ### path `Optional` The path to the directory or a subdirectory of the project. ```bash tuist test list --path [path] tuist test list -p [path] ``` ### git-branch `Optional` Filter test runs by git branch. ```bash tuist test list --git-branch [git-branch] ``` ### status `Optional` Filter test runs by status (success or failure). ```bash tuist test list --status [status] ``` ### scheme `Optional` Filter test runs by scheme. ```bash tuist test list --scheme [scheme] ``` ### page `Optional` The page number to fetch (1-indexed). ```bash tuist test list --page [page] ``` ### page-size `Optional` The number of test runs per page. Defaults to 10. ```bash tuist test list --page-size [page-size] ``` ### json `Optional` The output in JSON format. ```bash tuist test list --json ```