################# parser = argparse.ArgumentParser(description='Run basic H2O REST API tests.', ) parser.add_argument('--verbose', '-v', help='verbose output', action='count') parser.add_argument('--usecloud', help='ip:port to attach to', default='') parser.add_argument('--host', help='hostname to attach to', default='localhost') parser.add_argument('--port', help='port to attach to', type=int, default=54321) args = parser.parse_args() h2o_test_utils.setVerbosity(args.verbose) h2o.H2O.verbose = h2o_test_utils.isVerboser() if (len(args.usecloud) > 0): arr = args.usecloud.split(":") args.host = arr[0] args.port = int(arr[1]) host = args.host port = args.port h2o.H2O.verboseprint("host: " + str(host)) h2o.H2O.verboseprint("port" + str(port)) pp = pprint.PrettyPrinter(indent=4) # pretty printer for debugging
################# # setup ################# parser = argparse.ArgumentParser( description='Run basic H2O REST API tests.', ) parser.add_argument('--verbose', '-v', help='verbose output', action='count') parser.add_argument('--usecloud', help='ip:port to attach to', default='') parser.add_argument('--host', help='hostname to attach to', default='localhost') parser.add_argument('--port', help='port to attach to', type=int, default=54321) args = parser.parse_args() h2o_test_utils.setVerbosity(args.verbose) h2o.H2O.verbose = h2o_test_utils.isVerboser() if (len(args.usecloud) > 0): arr = args.usecloud.split(":") args.host = arr[0] args.port = int(arr[1]) host = args.host port = args.port h2o.H2O.verboseprint("host: " + str(host)) h2o.H2O.verboseprint("port" + str(port)) pp = pprint.PrettyPrinter(indent=4) # pretty printer for debugging