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
{{ message }}
This repository was archived by the owner on May 27, 2024. It is now read-only.
My current best guess versions of Pytest. I will note that there is a comment in the _pytest/terminal.py that says # self.writer will be deprecated in pytest-3.4, however that is there in the pytest 3.6.1 version, so something is amiss there.
perhaps this library should use _tw rather than writer?
A slight bit more info, the attribute in question was removed accidentally in pytest 3.3.0, but replaced in pytest 3.3.1. They have changed to use _tw internally, but have not removed the writer alias as of yet.
This incompatibility, combined with the uncertainty of how long writer will be around lead me to think the line here should be something along the lines of:
try:
self._tw=self.writer=reporter.writer# some monkeypatching needed to access existing writerexceptAttributeError:
self._tw=self.writer=reporter._tw# writer attribute replaced in some versions of pytest
Either that or setup.py should explicitly disallow the incompatable version of pytest
This error was generated when running with Python 3.6, but not with Python 3.5.
I did not get this error on my local machine (on python 3.6), only on Travis.
Log located here:
https://travis-ci.org/wright-group/WrightTools/builds/389486834
The text was updated successfully, but these errors were encountered: