mirror of
https://github.com/ceph/ceph
synced 2024-12-26 13:33:57 +00:00
5d192ed46c
Signed-off-by: Zack Cerza <zack.cerza@inktank.com>
23 lines
513 B
Python
23 lines
513 B
Python
import argparse
|
|
import teuthology.ls
|
|
|
|
|
|
def main():
|
|
teuthology.ls.main(parse_args())
|
|
|
|
|
|
def parse_args():
|
|
parser = argparse.ArgumentParser(description='List teuthology job results')
|
|
parser.add_argument(
|
|
'archive_dir',
|
|
metavar='DIR',
|
|
default='.',
|
|
help='path under which to archive results',
|
|
)
|
|
parser.add_argument(
|
|
'-v', '--verbose',
|
|
action='store_true', default=False,
|
|
help='show reasons tests failed',
|
|
)
|
|
return parser.parse_args()
|