diff --git a/py/_plugin/pytest_junitxml.py b/py/_plugin/pytest_junitxml.py index 94001b74e..64945cc24 100644 --- a/py/_plugin/pytest_junitxml.py +++ b/py/_plugin/pytest_junitxml.py @@ -166,6 +166,7 @@ class LogXML(object): logfile.writelines(self.test_logs) logfile.write('') 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))