Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion kcidev/subcommands/results.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ def cmd_builds(data, commit, download_logs, status):
)
@click.option(
"--action",
type=click.Choice(["summary", "trees", "builds"], case_sensitive=True),
help="Select desired results action",
)
@click.option(
Expand All @@ -189,7 +190,8 @@ def cmd_builds(data, commit, download_logs, status):
)
@click.option(
"--status",
help="Status of test result: all, pass, fail, inconclusive",
type=click.Choice(["all", "pass", "fail", "inconclusive"], case_sensitive=True),
help="Status of test result",
default="all",
)
@click.pass_context
Expand Down
Loading