From a52d6388a9eb1f5ca07e618c50281d705318c2ca Mon Sep 17 00:00:00 2001 From: Calum McConnell Date: Tue, 15 Apr 2025 00:13:37 -0400 Subject: [PATCH] Use python3 in place of python, as some systems don't emulate the former (#8568) --- script/test_build_components | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/test_build_components b/script/test_build_components index 62fe0f1b55..83ab947fc1 100755 --- a/script/test_build_components +++ b/script/test_build_components @@ -53,7 +53,7 @@ start_esphome() { echo "> [$target_component] [$test_name] [$target_platform_with_version]" set -x # TODO: Validate escape of Command line substitution value - python -m esphome -s component_name $target_component -s component_dir ../../components/$target_component -s test_name $test_name -s target_platform $target_platform $esphome_command $component_test_file + python3 -m esphome -s component_name $target_component -s component_dir ../../components/$target_component -s test_name $test_name -s target_platform $target_platform $esphome_command $component_test_file { set +x; } 2>/dev/null }