don't print empty lines with junitxml file printing

--HG--
branch : trunk
This commit is contained in:
holger krekel 2010-06-04 00:39:18 +02:00
parent 46f72d9350
commit bdd1006e06
1 changed files with 4 additions and 3 deletions

View File

@ -166,6 +166,7 @@ class LogXML(object):
logfile.writelines(self.test_logs)
logfile.write('</testsuite>')
logfile.close()
tw = session.config.pluginmanager.getplugin("terminalreporter")._tw
tw.line()
tw.sep("-", "generated xml file: %s" %(self.logfile))
def pytest_terminal_summary(self, terminalreporter):
tw = terminalreporter._tw
terminalreporter.write_sep("-", "generated xml file: %s" %(self.logfile))