mirror of
https://github.com/ceph/ceph
synced 2024-12-26 13:33:57 +00:00
8a4de411a6
Signed-off-by: Zack Cerza <zack.cerza@inktank.com>
38 lines
855 B
Python
38 lines
855 B
Python
import argparse
|
|
|
|
import teuthology.worker
|
|
|
|
|
|
def main():
|
|
teuthology.worker.main(parse_args())
|
|
|
|
|
|
def parse_args():
|
|
parser = argparse.ArgumentParser(description="""
|
|
Grab jobs from a beanstalk queue and run the teuthology tests they
|
|
describe. One job is run at a time.
|
|
""")
|
|
parser.add_argument(
|
|
'-v', '--verbose',
|
|
action='store_true', default=None,
|
|
help='be more verbose',
|
|
)
|
|
parser.add_argument(
|
|
'--archive-dir',
|
|
metavar='DIR',
|
|
help='path under which to archive results',
|
|
required=True,
|
|
)
|
|
parser.add_argument(
|
|
'-l', '--log-dir',
|
|
help='path in which to store logs',
|
|
required=True,
|
|
)
|
|
parser.add_argument(
|
|
'-t', '--tube',
|
|
help='which beanstalk tube to read jobs from',
|
|
required=True,
|
|
)
|
|
|
|
return parser.parse_args()
|