mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-29 19:50:40 +00:00
TestsManager: stop displaying blacklisted tests on stdout
It's basically spam, better suited to the debug logs
This commit is contained in:
parent
440055214a
commit
d5e3f4d31c
1 changed files with 3 additions and 3 deletions
|
@ -1266,8 +1266,8 @@ class TestsManager(Loggable):
|
|||
|
||||
def set_blacklists(self):
|
||||
if self.blacklisted_tests:
|
||||
printc("\nCurrently 'hardcoded' %s blacklisted tests:" %
|
||||
self.name, Colors.WARNING, title_char='-')
|
||||
self.info("Currently 'hardcoded' %s blacklisted tests:" %
|
||||
self.name)
|
||||
|
||||
if self.options.check_bugs_status:
|
||||
if not check_bugs_resolution(self.blacklisted_tests):
|
||||
|
@ -1276,7 +1276,7 @@ class TestsManager(Loggable):
|
|||
for name, bug in self.blacklisted_tests:
|
||||
self._add_blacklist(name)
|
||||
if not self.options.check_bugs_status:
|
||||
print(" + %s \n --> bug: %s\n" % (name, bug))
|
||||
self.info(" + %s --> bug: %s" % (name, bug))
|
||||
|
||||
return True
|
||||
|
||||
|
|
Loading…
Reference in a new issue