Skip to content

Commit ac87d25

Browse files
authored
Remove mac arm64 workaround from test runner. NFC (#25736)
See #25730
1 parent 5d2b2f1 commit ac87d25

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

test/runner.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
import math
2626
import operator
2727
import os
28-
import platform
2928
import random
3029
import sys
3130
import time
@@ -420,9 +419,7 @@ def run_tests(options, suites):
420419
print('Test suites:', [s[0] for s in suites])
421420
# Run the discovered tests
422421

423-
# We currently don't support xmlrunner on macOS M1 runner since
424-
# `pip` doesn't seeem to yet have pre-built binaries for M1.
425-
if os.getenv('CI') and not (utils.MACOS and platform.machine() == 'arm64'):
422+
if os.getenv('CI'):
426423
os.makedirs('out', exist_ok=True)
427424
# output fd must remain open until after testRunner.run() below
428425
output = open('out/test-results.xml', 'wb')

0 commit comments

Comments
 (0)