Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c92bbb021a | ||
|
|
710b324902 | ||
|
|
76e7b8d0c0 | ||
|
|
63b329c251 |
@@ -1,3 +1,14 @@
|
||||
pytest-xdist 1.22.2 (2018-02-26)
|
||||
================================
|
||||
|
||||
Bug Fixes
|
||||
---------
|
||||
|
||||
- Add backward compatibility for ``slaveoutput`` attribute to
|
||||
``WorkerController`` instances. (`#285
|
||||
<https://github.com/pytest-dev/pytest-xdist/issues/285>`_)
|
||||
|
||||
|
||||
pytest-xdist 1.22.1 (2018-02-19)
|
||||
================================
|
||||
|
||||
|
||||
@@ -307,7 +307,7 @@ class WorkerController(object):
|
||||
self.notify_inproc(eventname, node=self, **kwargs)
|
||||
elif eventname == "workerfinished":
|
||||
self._down = True
|
||||
self.workeroutput = kwargs['workeroutput']
|
||||
self.workeroutput = self.slaveoutput = kwargs['workeroutput']
|
||||
self.notify_inproc("workerfinished", node=self)
|
||||
elif eventname in ("logstart", "logfinish"):
|
||||
self.notify_inproc(eventname, node=self, **kwargs)
|
||||
|
||||
Reference in New Issue
Block a user