mirror of
https://github.com/ceph/ceph
synced 2025-01-14 06:53:11 +00:00
dface638c1
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
20 lines
393 B
Python
20 lines
393 B
Python
"""
|
|
usage: teuthology-ls [-h] [-v] <archive_dir>
|
|
|
|
List teuthology job results
|
|
|
|
positional arguments:
|
|
<archive_dir> path under which to archive results
|
|
|
|
optional arguments:
|
|
-h, --help show this help message and exit
|
|
-v, --verbose show reasons tests failed
|
|
"""
|
|
import docopt
|
|
import teuthology.ls
|
|
|
|
|
|
def main():
|
|
args = docopt.docopt(__doc__)
|
|
teuthology.ls.main(args)
|