You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In run.py, there is a sys.stdout.write with a formatter.render() call as the argument. This is fine under Python 2, but under Python 3 some formatters return instances of str here, some return bytes. Those that return bytes cause errors.
In particular, the XUnit and YAML formatters return bytes objects.
The text was updated successfully, but these errors were encountered:
In
run.py
, there is asys.stdout.write
with aformatter.render()
call as the argument. This is fine under Python 2, but under Python 3 some formatters return instances of str here, some return bytes. Those that return bytes cause errors.In particular, the XUnit and YAML formatters return
bytes
objects.The text was updated successfully, but these errors were encountered: