Bug 1410424 - [mozbuild] Add a 'quiet' argument to VirtualenvManager.install_pip_requirements r=mshal

Some requirements.txt are very large and result in a lot of package already
installed messages. Would be nice to hide this.

MozReview-Commit-ID: FQecuePM0zZ
This commit is contained in:
Andrew Halberstadt
2018-04-06 10:23:49 -04:00
parent a3e23e1f0d
commit a7822f165d
2 changed files with 6 additions and 2 deletions

View File

@@ -51,7 +51,8 @@ class Documentation(MachCommandBase):
return die('jsdoc not found - please install from npm.')
self._activate_virtualenv()
self.virtualenv_manager.install_pip_requirements(os.path.join(here, 'requirements.txt'))
self.virtualenv_manager.install_pip_requirements(
os.path.join(here, 'requirements.txt'), quiet=True)
import sphinx
import webbrowser