diff --git a/avocado/plugins/run.py b/avocado/plugins/run.py index c44a76d91f1a2d9eb0d4cc180b80d868e460c1ee..4349822eb87aed4f6e085918d12255f5be923f14 100644 --- a/avocado/plugins/run.py +++ b/avocado/plugins/run.py @@ -46,8 +46,9 @@ class Run(CLICmd): """ parser = super(Run, self).configure(parser) - parser.add_argument('url', type=str, default=[], nargs='*', - help='List of test IDs (aliases or paths)') + parser.add_argument("url", type=str, default=[], nargs='*', + metavar="TEST_REFERENCE", + help='List of test references (aliases or paths)') parser.add_argument("-d", "--dry-run", action="store_true", help="Instead of running the test only "