1
0
mirror of https://github.com/vmware/vsphere-automation-sdk-python.git synced 2024-11-26 11:19:59 -05:00

switch -t and -v in setup_cli.py

This commit is contained in:
Tianhao He 2017-01-25 00:32:12 -08:00
parent 72e6895c5c
commit fb34b56b13

View File

@ -22,14 +22,14 @@ def build_arg_parser():
setup script
-s, --testbed_setup
-v, --testbed_validate
-t, --testbed_validate
-c, --testbed_cleanup
-o, --iso_cleanup
-e, --samples_setup
-r, --samples
-i, --samples_incremental
-l, --samples_cleanup
-t, --skipverification
-v, --skipverification
"""
parser = argparse.ArgumentParser(
@ -41,7 +41,7 @@ def build_arg_parser():
'trying to build in case there is '
'an intermediate failure')
parser.add_argument('-v', '--testbed_validate',
parser.add_argument('-t', '--testbed_validate',
action='store_true',
help='Validate if the testbed is ready for the samples')
@ -70,7 +70,7 @@ def build_arg_parser():
action='store_true',
help='Clean up after sample run. ')
parser.add_argument('-t', '--skipverification',
parser.add_argument('-v', '--skipverification',
action='store_true',
help='Verify server certificate when connecting to '
'vcenter. ')