Skip to content

Commit

Permalink
schemas/suite.py: Fix typos in aliases
Browse files Browse the repository at this point in the history
Signed-off-by: Devansh Singh <[email protected]>
  • Loading branch information
Devansh3712 committed Jun 27, 2024
1 parent 85d6b06 commit 246831d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/teuthology_api/schemas/suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class SuiteArgs(BaseArgs):
kernel: Union[str, None] = Field(default="distro", alias="--kernel")
machine_type: Union[str, None] = Field(default="smithi", alias="--machine-type")
newest: Union[str, None] = Field(default="0", alias="--newest")
rerun_status: Union[bool, None] = Field(default=False, alias="--rerun-status.")
rerun_status: Union[bool, None] = Field(default=False, alias="--rerun-status")
rerun_statuses: Union[str, None] = Field(
default="fail,dead", alias="--rerun-statuses"
)
Expand All @@ -34,7 +34,7 @@ class SuiteArgs(BaseArgs):
suite_dir: Union[str, None] = Field(default=None, alias="--suite-dir")
suite_relpath: Union[str, None] = Field(default="qa", alias="--suite-relpath")
suite_repo: Union[str, None] = Field(
default="https://github.com/ceph/ceph-ci.git", alias="--suite_repo"
default="https://github.com/ceph/ceph-ci.git", alias="--suite-repo"
)
teuthology_branch: Union[str, None] = Field(
default="main", alias="--teuthology-branch"
Expand Down

0 comments on commit 246831d

Please sign in to comment.