Merge pull request #215 from nicoddemus/logwarning-py-path

Fix crash when transferring internal pytest warnings from workers to the master node
This commit is contained in:
Ronny Pfannschmidt
2017-08-10 08:57:21 +02:00
committed by GitHub
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):