Transfer warnings from workers to master

Fix #92
This commit is contained in:
Bruno Oliveira
2017-08-09 07:32:14 -03:00
parent 02754d84d3
commit d0474076e9
5 changed files with 25 additions and 0 deletions

View File

@@ -96,6 +96,9 @@ class SlaveInteractor:
data = serialize_report(report)
self.sendevent("collectreport", data=data)
def pytest_logwarning(self, message, code, nodeid, fslocation):
self.sendevent("logwarning", message=message, code=code, nodeid=nodeid, fslocation=fslocation)
def serialize_report(rep):
def disassembled_report(rep):