Skip to content
Snippets Groups Projects
Commit c49a48bd authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

Merge pull request #2919 from nicolasnoble/report-culling

Reducing JUnit's report size.
parents 8c0389d8 4a5a8f31
No related branches found
No related tags found
No related merge requests found
...@@ -194,6 +194,10 @@ class Job(object): ...@@ -194,6 +194,10 @@ class Job(object):
self._tempfile.seek(0) self._tempfile.seek(0)
stdout = self._tempfile.read() stdout = self._tempfile.read()
filtered_stdout = filter(lambda x: x in string.printable, stdout.decode(errors='ignore')) filtered_stdout = filter(lambda x: x in string.printable, stdout.decode(errors='ignore'))
# TODO: looks like jenkins master is slow because parsing the junit results XMLs is not
# implemented efficiently. This is an experiment to workaround the issue by making sure
# results.xml file is small enough.
filtered_stdout = filtered_stdout[-128:]
if self._xml_test is not None: if self._xml_test is not None:
self._xml_test.set('time', str(elapsed)) self._xml_test.set('time', str(elapsed))
ET.SubElement(self._xml_test, 'system-out').text = filtered_stdout ET.SubElement(self._xml_test, 'system-out').text = filtered_stdout
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment