Fix crash when transferring internal pytest warnings from workers to the master node

Fix #214
This commit is contained in:
Bruno Oliveira
2017-08-09 17:53:44 -03:00
parent a54f531701
commit 20a1b9ef11
3 changed files with 17 additions and 6 deletions

View File

@@ -99,7 +99,7 @@ class SlaveInteractor:
def pytest_logwarning(self, message, code, nodeid, fslocation):
self.sendevent("logwarning", message=message, code=code, nodeid=nodeid,
fslocation=fslocation)
fslocation=str(fslocation))
def serialize_report(rep):