diff --git a/test/smoke_test/smoke_test.py b/test/smoke_test/smoke_test.py index 2b89a20c92..3ae4d9421f 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' or (target_os == 'macos-arm64' and package_type == 'conda'): + if target_os == 'windows': smoke_test_command = f"python {module['smoke_test']}" output = subprocess.check_output( smoke_test_command, stderr=subprocess.STDOUT, shell=True,