ceph/scripts/run.py
Zack Cerza 8dbb1d5fb9 Add --suite-path
Slightly less ugly than setting PYTHONPATH

Signed-off-by: Zack Cerza <zack.cerza@inktank.com>
2014-08-21 16:11:19 -06:00

84 lines
2.0 KiB
Python

import argparse
import teuthology.misc
import teuthology.run
def main():
teuthology.run.main(parse_args())
def parse_args():
parser = argparse.ArgumentParser(description='Run ceph integration tests')
parser.add_argument(
'-v', '--verbose',
action='store_true', default=None,
help='be more verbose',
)
parser.add_argument(
'--version',
action='version',
version='%s' % teuthology.__version__,
help='the current installed version of teuthology',
)
parser.add_argument(
'config',
metavar='CONFFILE',
nargs='+',
type=teuthology.misc.config_file,
action=teuthology.misc.MergeConfig,
default={},
help='config file to read',
)
parser.add_argument(
'-a', '--archive',
metavar='DIR',
help='path to archive results in',
)
parser.add_argument(
'--description',
help='job description',
)
parser.add_argument(
'--owner',
help='job owner',
)
parser.add_argument(
'--lock',
action='store_true',
default=False,
help='lock machines for the duration of the run',
)
parser.add_argument(
'--machine-type',
default=None,
help='Type of machine to lock/run tests on.',
)
parser.add_argument(
'--os-type',
default='ubuntu',
help='Distro/OS of machine to run test on.',
)
parser.add_argument(
'--os-version',
default=None,
help='Distro/OS version of machine to run test on.',
)
parser.add_argument(
'--block',
action='store_true',
default=False,
help='block until locking machines succeeds (use with --lock)',
)
parser.add_argument(
'--name',
metavar='NAME',
help='name for this teuthology run',
)
parser.add_argument(
'--suite-path',
help='Location of ceph-qa-suite on disk. If not specified, it will be fetched', # noqa
)
return parser.parse_args()