Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
Add help text to --order
Browse files Browse the repository at this point in the history
  • Loading branch information
Darren Burns committed Jan 19, 2020
1 parent 9b6cfaf commit 721eef5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ward/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
"--path",
default=".",
type=click.Path(exists=True),
help="Path to tests.",
help="Path to test directory.",
multiple=True,
)
@click.option(
"--search",
help="Search test names, descriptions and module names for the search query and only run matching tests.",
help="Search test names, bodies, descriptions and module names for the search query and only run matching tests.",
)
@click.option(
"--fail-limit",
Expand All @@ -52,6 +52,7 @@
["standard", "random"], case_sensitive=False
),
default="standard",
help="Specify the order in which tests should run.",
)
@click.version_option(version=__version__)
def run(path, search, fail_limit, test_output_style, order):
Expand Down

0 comments on commit 721eef5

Please sign in to comment.