Skip to content

Commit b07f455

Browse files
authored
Merge pull request #5094 from rainwoodman/patch-1
Suppress progress bar of the conda command.
2 parents 080deb5 + 2cb6e76 commit b07f455

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

readthedocs/doc_builder/python_environments.py

+2
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,7 @@ def setup_base(self):
355355
'conda',
356356
'env',
357357
'create',
358+
'--quiet',
358359
'--name',
359360
self.version.slug,
360361
'--file',
@@ -386,6 +387,7 @@ def install_core_requirements(self):
386387
'conda',
387388
'install',
388389
'--yes',
390+
'--quiet',
389391
'--name',
390392
self.version.slug,
391393
]

readthedocs/rtd_tests/tests/test_doc_building.py

+2
Original file line numberDiff line numberDiff line change
@@ -1341,6 +1341,7 @@ def test_install_core_requirements_sphinx_conda(self, checkout_path):
13411341
'conda',
13421342
'install',
13431343
'--yes',
1344+
'--quiet',
13441345
'--name',
13451346
self.version_sphinx.slug,
13461347
]
@@ -1380,6 +1381,7 @@ def test_install_core_requirements_mkdocs_conda(self, checkout_path):
13801381
'conda',
13811382
'install',
13821383
'--yes',
1384+
'--quiet',
13831385
'--name',
13841386
self.version_mkdocs.slug,
13851387
]

0 commit comments

Comments
 (0)