def main()

in Scripts/SmokeTests/run_sample_ci.py [0:0]


def main():
    argument_parser = argparse.ArgumentParser(
        description="Run Sample in CI")
    argument_parser.add_argument("--file", required=True, help="Configuration file to pull CI data from")
    argument_parser.add_argument("--input_uuid", required=False, help="UUID data to replace '$INPUT_UUID' with. Only works in Data field")
    parsed_commands = argument_parser.parse_args()

    print("Starting to launch sample...", flush=True)
    sample_result = setup_sample_and_launch(parsed_commands)
    sys.exit(sample_result)