""" usage: teuthology-ls [-h] [-v] List teuthology job results positional arguments: 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)