We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d2b2f1 commit ac87d25Copy full SHA for ac87d25
test/runner.py
@@ -25,7 +25,6 @@
25
import math
26
import operator
27
import os
28
-import platform
29
import random
30
import sys
31
import time
@@ -420,9 +419,7 @@ def run_tests(options, suites):
420
419
print('Test suites:', [s[0] for s in suites])
421
# Run the discovered tests
422
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'):
+ if os.getenv('CI'):
426
os.makedirs('out', exist_ok=True)
427
# output fd must remain open until after testRunner.run() below
428
output = open('out/test-results.xml', 'wb')
0 commit comments