Skip to content
Snippets Groups Projects
Commit 6af65941 authored by Craig Tiller's avatar Craig Tiller
Browse files

Fix flag

parent d16abf80
No related branches found
No related tags found
No related merge requests found
...@@ -1247,9 +1247,8 @@ argp.add_argument('--bq_result_table', ...@@ -1247,9 +1247,8 @@ argp.add_argument('--bq_result_table',
type=str, type=str,
nargs='?', nargs='?',
help='Upload test results to a specified BQ table.') help='Upload test results to a specified BQ table.')
argp.add_argument('--auto_set_flakes', dest='auto_set_flakes', action='store_true') argp.add_argument('--auto_set_flakes', default=True, type=bool,
argp.add_argument('--no-auto_set_flakes', dest='auto_set_flakes', action='store_false') help='Set flakiness data from historic data')
argp.set_defaults('auto_set_flakes', True)
args = argp.parse_args() args = argp.parse_args()
flaky_tests = set() flaky_tests = set()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment