Bug 1519884: Improve help text for --test argument r=rwood

Differential Revision: https://phabricator.services.mozilla.com/D27608

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Ivan Yung 2019-04-17 14:17:35 +00:00
parent 060fc67e56
commit 438d9c71b3

View File

@ -52,7 +52,9 @@ def create_parser(mach_interface=False):
add_arg = parser.add_argument
add_arg('-t', '--test', required=True, dest='test',
help="name of raptor test to run")
help="name of raptor test to run (can be a top-level suite name i.e."
"'--test raptor-speedometer','--test raptor-tp6-1', or for page-load "
"tests a suite sub-test i.e. '--test raptor-tp6-google-firefox')")
add_arg('--app', default='firefox', dest='app',
help="name of the application we are testing (default: firefox)",
choices=APPS.keys())