From 38a91d11463f25f4b2926a927592b067226bbfd0 Mon Sep 17 00:00:00 2001 From: atalman Date: Wed, 5 Jul 2023 12:30:37 -0700 Subject: [PATCH] Arm64 use python --- test/smoke_test/smoke_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/smoke_test/smoke_test.py b/test/smoke_test/smoke_test.py index 3ae4d9421f..c45b2c7ece 100644 --- a/test/smoke_test/smoke_test.py +++ b/test/smoke_test/smoke_test.py @@ -214,7 +214,7 @@ def smoke_test_modules(): subprocess.check_output(f"git clone --depth 1 {module['repo']}", stderr=subprocess.STDOUT, shell=True) try: smoke_test_command = f"python3 {module['smoke_test']}" - if target_os == 'windows': + if target_os == 'windows' or target_os == 'macos-arm64': smoke_test_command = f"python {module['smoke_test']}" output = subprocess.check_output( smoke_test_command, stderr=subprocess.STDOUT, shell=True,