validate:launcher: Remove noise about empty known issues in logs
This commit is contained in:
parent
148bb081b8
commit
adbbfa1ec1
@ -290,9 +290,12 @@ class Test(Loggable):
|
|||||||
f.write(info)
|
f.write(info)
|
||||||
|
|
||||||
def add_known_issue_information(self):
|
def add_known_issue_information(self):
|
||||||
info = "\n\n**Already known issues**:\n\n``` python\n%s\n```\n\n" % (
|
if self.expected_issues:
|
||||||
json.dumps(self.expected_issues)
|
info = "\n\n**Already known issues**:\n\n``` python\n%s\n```\n\n" % (
|
||||||
)
|
json.dumps(self.expected_issues)
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
info = ""
|
||||||
|
|
||||||
info += "\n\n**You can mark the issues as 'known' by adding the " \
|
info += "\n\n**You can mark the issues as 'known' by adding the " \
|
||||||
+ " following lines to the list of known issues**\n" \
|
+ " following lines to the list of known issues**\n" \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user