From cb5d555ea4d07232e6a4397a0b84014fe499f3e2 Mon Sep 17 00:00:00 2001 From: William Hesse Date: Mon, 13 Feb 2023 13:19:39 +0100 Subject: [PATCH] Change run_tests.sh to use python3 --- testing/run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/run_tests.sh b/testing/run_tests.sh index 8cefc971a4c04..da8a1ece0fcad 100755 --- a/testing/run_tests.sh +++ b/testing/run_tests.sh @@ -5,4 +5,4 @@ set -o pipefail -e; BUILD_VARIANT="${1:-host_debug_unopt}" CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" -python "${CURRENT_DIR}/run_tests.py" --variant="${BUILD_VARIANT}" --type=engine,dart,benchmarks +python3 "${CURRENT_DIR}/run_tests.py" --variant="${BUILD_VARIANT}" --type=engine,dart,benchmarks