mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 15:27:07 +00:00
validate:launcher: Remove noise about empty known issues in logs
This commit is contained in:
parent
148bb081b8
commit
adbbfa1ec1
1 changed files with 6 additions and 3 deletions
|
@ -290,9 +290,12 @@ class Test(Loggable):
|
|||
f.write(info)
|
||||
|
||||
def add_known_issue_information(self):
|
||||
info = "\n\n**Already known issues**:\n\n``` python\n%s\n```\n\n" % (
|
||||
json.dumps(self.expected_issues)
|
||||
)
|
||||
if 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 " \
|
||||
+ " following lines to the list of known issues**\n" \
|
||||
|
|
Loading…
Reference in a new issue