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 6624589 commit 8cb4137Copy full SHA for 8cb4137
test/runner.py
@@ -344,7 +344,8 @@ def run_tests(options, suites):
344
output = open('out/test-results.xml', 'wb')
345
import xmlrunner # type: ignore
346
testRunner = xmlrunner.XMLTestRunner(output=output, verbosity=2,
347
- failfast=options.failfast)
+ failfast=options.failfast,
348
+ buffer=True)
349
print('Writing XML test output to ' + os.path.abspath(output.name))
350
else:
351
testRunner = unittest.TextTestRunner(verbosity=2, failfast=options.failfast)
0 commit comments