chore(core): remove duplicate -r flag from update_fixtures ci

```
$ tests/update_fixtures.py ci --help
Usage: update_fixtures.py ci [OPTIONS]

  Update fixtures file with results from CI.

Options:
  -b, --branch TEXT        Branch name
  -r, --run-id INTEGER     GitHub Actions run id
  -o, --only-jobs TEXT     Job names which to process
  -e, --exclude-jobs TEXT  Not take these jobs
  -r, --remove-missing     Remove missing tests
  --help                   Show this message and exit.
```

[no changelog]
This commit is contained in:
Roman Zeyde
2025-07-28 11:37:26 +03:00
committed by Roman Zeyde
parent c142c73e6e
commit dd301e10b6

View File

@@ -44,7 +44,7 @@ def _get_current_git_branch() -> str:
expose_value=False,
)
@click.option("-b", "--branch", help="Branch name")
@click.option("-r", "--run-id", help="GitHub Actions run id", type=int)
@click.option("--run-id", help="GitHub Actions run id", type=int)
@click.option(
"-o",
"--only-jobs",