Adding argument: --summary-json-output-file

This commit is contained in:
Andrew Glenn 2022-02-21 19:57:47 -06:00
parent 7858ad066f
commit 9fd260feb1
2 changed files with 15 additions and 2 deletions

View file

@ -154,6 +154,10 @@ def _add_run_options(parser: argparse.ArgumentParser) -> None:
'the rewrite'
),
)
parser.add_argument(
'--summary-json-output-file',
help='Write summary information to a json file.'
)
def _adjust_args_and_chdir(args: argparse.Namespace) -> None: