Skip to content

Commit

Permalink
Arm64 use python
Browse files Browse the repository at this point in the history
  • Loading branch information
atalman committed Jul 5, 2023
1 parent 7d39a93 commit 38a91d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/smoke_test/smoke_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 38a91d1

Please sign in to comment.