Bug 1496452 - Don't log wpt manifest update when resolving tests r=ahal

Differential Revision: https://phabricator.services.mozilla.com/D7732

--HG--
extra : moz-landing-system : lando
This commit is contained in:
James Graham 2018-10-05 16:46:52 +00:00
parent 30381e7f12
commit c32b272c7a

View File

@ -453,8 +453,14 @@ class TestMetadata(object):
sys.path = [wpt_path] + sys.path
import manifestupdate
# Set up a logger that will drop all the output
import logging
logger = logging.getLogger("manifestupdate")
logger.propogate = False
manifests = manifestupdate.run(self._srcdir, self._objdir, rebuild=False, download=True,
config_path=None, rewrite_config=True, update=True)
config_path=None, rewrite_config=True, update=True,
logger=logger)
if not manifests:
print("Loading wpt manifest failed")
return