cv-test-mgr: Add defaults for test-instance, test-cfg

These don't matter too much for normal use, so we can default to
sane values to save users having to enter the options.

Signed-off-by: Ben Greear <greearb@candelatech.com>
This commit is contained in:
Ben Greear
2021-05-03 17:36:49 -07:00
parent 378beafe32
commit 1db9f92412

View File

@@ -33,9 +33,9 @@ def cv_add_base_parser(parser):
help="LANforge username to pull reports")
parser.add_argument("--lf_password", type=str, default="lanforge",
help="LANforge Password to pull reports")
parser.add_argument("-i", "--instance_name", type=str,
parser.add_argument("-i", "--instance_name", type=str, default="cv_dflt_inst",
help="create test instance")
parser.add_argument("-c", "--config_name", type=str,
parser.add_argument("-c", "--config_name", type=str, default="cv_dflt_cfg",
help="Config file name")
parser.add_argument("-r", "--pull_report", default=False, action='store_true',