Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions test/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import math
import operator
import os
import platform
import random
import sys
import time
Expand Down Expand Up @@ -420,9 +419,7 @@ def run_tests(options, suites):
print('Test suites:', [s[0] for s in suites])
# Run the discovered tests

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