def base_parser()

in ftl/benchmark/args.py [0:0]


def base_parser():
    parser = args.base_parser()

    parser.add_argument(
        '--iterations',
        action='store',
        type=int,
        default=5,
        help='Number of times to build the image')

    parser.add_argument(
        '--description',
        action='store',
        help=('Description of the app being benchmarked.'))

    parser.add_argument(
        '--project',
        action='store',
        default='ftl-node-test',
        help='Bigquery project build times should be stored in')

    parser.add_argument(
        '--dataset',
        action='store',
        default='ftl_benchmark',
        help='Bigquery dataset build times should be stored in')

    parser.add_argument(
        '--gen_files',
        action='store',
        type=int,
        default=0,
        help=('Number of app files to generate for test'))

    return parser