Skip to content

Commit

Permalink
hide headless argument
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberw committed Jan 20, 2021
1 parent cfa4182 commit 78c7f4e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion bin/swarm
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@ parser = configargparse.ArgumentParser(
)

parser.add_argument("-f", "--locustfile", type=str, dest="testplan")
parser.add_argument("--headless", type=bool, dest="ignore_this")
parser.add_argument(
"--headless",
action="store_true",
dest="ignore_this",
help=configargparse.SUPPRESS,
)
parser.add_argument(
"--loadgen-list",
type=str,
Expand Down

0 comments on commit 78c7f4e

Please sign in to comment.