Skip to content

Commit

Permalink
Merge pull request #5094 from rainwoodman/patch-1
Browse files Browse the repository at this point in the history
Suppress progress bar of the conda command.
  • Loading branch information
humitos authored Jan 14, 2019
2 parents 080deb5 + 2cb6e76 commit b07f455
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions readthedocs/doc_builder/python_environments.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,7 @@ def setup_base(self):
'conda',
'env',
'create',
'--quiet',
'--name',
self.version.slug,
'--file',
Expand Down Expand Up @@ -386,6 +387,7 @@ def install_core_requirements(self):
'conda',
'install',
'--yes',
'--quiet',
'--name',
self.version.slug,
]
Expand Down
2 changes: 2 additions & 0 deletions readthedocs/rtd_tests/tests/test_doc_building.py
Original file line number Diff line number Diff line change
Expand Up @@ -1341,6 +1341,7 @@ def test_install_core_requirements_sphinx_conda(self, checkout_path):
'conda',
'install',
'--yes',
'--quiet',
'--name',
self.version_sphinx.slug,
]
Expand Down Expand Up @@ -1380,6 +1381,7 @@ def test_install_core_requirements_mkdocs_conda(self, checkout_path):
'conda',
'install',
'--yes',
'--quiet',
'--name',
self.version_mkdocs.slug,
]
Expand Down

0 comments on commit b07f455

Please sign in to comment.