mirror of
https://github.com/ceph/ceph
synced 2024-12-26 13:33:57 +00:00
2a7de82498
Signed-off-by: Zack Cerza <zack.cerza@inktank.com>
23 lines
517 B
Python
23 lines
517 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',
|
|
help='path under which to archive results',
|
|
required=True,
|
|
)
|
|
parser.add_argument(
|
|
'-v', '--verbose',
|
|
action='store_true', default=False,
|
|
help='show reasons tests failed',
|
|
)
|
|
return parser.parse_args()
|