# tuist test case run list

Lists runs for a test case.

## Arguments

### test-case-identifier `Optional`

**Environment variable** `TUIST_TEST_CASE_RUN_LIST_IDENTIFIER`

The test case identifier. Either a UUID or the format Module/Suite/TestCase (or Module/TestCase).

```bash
tuist test case run list [test-case-identifier]
```

### project `Optional`

**Environment variable** `TUIST_TEST_CASE_RUN_LIST_PROJECT`

The full handle of the project. Must be in the format of account-handle/project-handle.

```bash
tuist test case run list --project [project]
tuist test case run list -P [project]
```

### path `Optional`

**Environment variable** `TUIST_TEST_CASE_RUN_LIST_PATH`

The path to the directory or a subdirectory of the project.

```bash
tuist test case run list --path [path]
tuist test case run list -p [path]
```

### flaky `Optional`

**Environment variable** `TUIST_TEST_CASE_RUN_LIST_FLAKY`

Filter by flaky runs.

```bash
tuist test case run list --flaky
```

### no-flaky `Optional`

**Environment variable** `TUIST_TEST_CASE_RUN_LIST_FLAKY`

Filter by flaky runs.

```bash
tuist test case run list --no-flaky
```

### test-run-id `Optional`

**Environment variable** `TUIST_TEST_CASE_RUN_LIST_TEST_RUN_ID`

Filter by test run ID.

```bash
tuist test case run list --test-run-id [test-run-id]
```

### page `Optional`

**Environment variable** `TUIST_TEST_CASE_RUN_LIST_PAGE`

The page number to fetch (1-indexed).

```bash
tuist test case run list --page [page]
```

### page-size `Optional`

**Environment variable** `TUIST_TEST_CASE_RUN_LIST_PAGE_SIZE`

The number of runs per page. Defaults to 10.

```bash
tuist test case run list --page-size [page-size]
```

### json `Optional`

**Environment variable** `TUIST_TEST_CASE_RUN_LIST_JSON`

The output in JSON format.

```bash
tuist test case run list --json
```

### no-json `Optional`

**Environment variable** `TUIST_TEST_CASE_RUN_LIST_JSON`

The output in JSON format.

```bash
tuist test case run list --no-json
```
