diff --git a/.cloud-build/execute_changed_notebooks_cli.py b/.cloud-build/execute_changed_notebooks_cli.py index dffc53462..182e2e5c3 100755 --- a/.cloud-build/execute_changed_notebooks_cli.py +++ b/.cloud-build/execute_changed_notebooks_cli.py @@ -166,7 +166,7 @@ else: notebooks = [changed_notebook for changed_notebook in changed_notebooks if execute_changed_notebooks_helper.select_notebook(changed_notebook, accumulative_results, args.test_percent)] # cap the number of notebooks to the specified percentage - max_notebooks = int((len(changed_notebooks) * (args.test_percenti/100))) + max_notebooks = int((len(changed_notebooks) * (args.test_percent/100))) if (len(notebooks) > max_notebooks): notebooks = notebooks[:max_notebooks]