From 6f75e54e4fbc21379d7eed87ed9fa5b73dfd85db Mon Sep 17 00:00:00 2001 From: Jan Tattermusch Date: Mon, 14 Mar 2022 12:12:51 +0100 Subject: [PATCH] run_tests_matrix.py: run workspace jobs with python3 (#28125) --- tools/run_tests/helper_scripts/run_tests_in_workspace.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tools/run_tests/helper_scripts/run_tests_in_workspace.sh b/tools/run_tests/helper_scripts/run_tests_in_workspace.sh index 7cff51fd673..37ac0af6aec 100755 --- a/tools/run_tests/helper_scripts/run_tests_in_workspace.sh +++ b/tools/run_tests/helper_scripts/run_tests_in_workspace.sh @@ -31,6 +31,4 @@ git submodule foreach 'cd "${repo_root}/${WORKSPACE_NAME}" \ && git submodule update --init --reference ${repo_root}/${name} ${name}' echo "Running run_tests.py in workspace ${WORKSPACE_NAME}" -# TODO(jtattermusch): switch to python3 as soon as it stops breaking Python MacOS tests. -# See #28125. -python "${WORKSPACE_NAME}/tools/run_tests/run_tests.py" "$@" +python3 "${WORKSPACE_NAME}/tools/run_tests/run_tests.py" "$@"