validate:launcher: Dump applied known issues in the logs

This commit is contained in:
Thibault Saunier 2019-03-26 15:18:27 -03:00 committed by Thibault Saunier
parent de007b6819
commit e279b1ff56

View file

@ -287,9 +287,13 @@ class Test(Loggable):
f.write(info)
def add_known_issue_information(self):
info = "\n\n**You can mark the issues as 'known' by adding the " \
+ " following lines to the list of known issues**\n" \
+ "\n\n``` python\n%s\n```" % (self.generate_expected_issues())
info = "\n\n**Already known issues**:\n\n``` python\n%s\n```\n\n" % (
json.dumps(self.expected_issues)
)
info += "\n\n**You can mark the issues as 'known' by adding the " \
+ " following lines to the list of known issues**\n" \
+ "\n\n``` python\n%s\n```" % (self.generate_expected_issues())
if self.options.redirect_logs:
print(info)