Skip to content

Commit

Permalink
help message improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberw committed Nov 5, 2022
1 parent a7a995f commit 020ca95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions locust/argument_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ def setup_parser_arguments(parser):
web_ui_group.add_argument(
"--autostart",
action="store_true",
help="Starts the test immediately (without disabling the web UI). Use -u and -t to control user count and run time",
help="Starts the test immediately (like --headless, but without disabling the web UI)",
env_var="LOCUST_AUTOSTART",
)
web_ui_group.add_argument(
Expand Down Expand Up @@ -467,13 +467,13 @@ def setup_parser_arguments(parser):
stats_group.add_argument(
"--print-stats",
action="store_true",
help="Print stats in the console",
help="Enable periodic printing of request stats in UI runs",
env_var="LOCUST_PRINT_STATS",
)
stats_group.add_argument(
"--only-summary",
action="store_true",
help="Only print the summary stats",
help="Disable periodic printing of request stats during --headless run",
env_var="LOCUST_ONLY_SUMMARY",
)
stats_group.add_argument(
Expand Down

0 comments on commit 020ca95

Please sign in to comment.