mirror of
https://github.com/odoo/runbot.git
synced 2025-03-15 23:45:44 +07:00
[FIX] runbot: hide progressbar for pip
This commit is contained in:
parent
03732638f3
commit
bd4cf76b76
@ -966,7 +966,7 @@ class BuildResult(models.Model):
|
|||||||
if not self.params_id.skip_requirements and os.path.isfile(commit_id._source_path('requirements.txt')):
|
if not self.params_id.skip_requirements and os.path.isfile(commit_id._source_path('requirements.txt')):
|
||||||
repo_dir = self._docker_source_folder(commit_id)
|
repo_dir = self._docker_source_folder(commit_id)
|
||||||
requirement_path = os.path.join(repo_dir, 'requirements.txt')
|
requirement_path = os.path.join(repo_dir, 'requirements.txt')
|
||||||
pres.append(['sudo', 'pip%s' % py_version, 'install', '-r', '%s' % requirement_path])
|
pres.append(['sudo', 'pip%s' % py_version, 'install', '--progress-bar', 'off', '-r', '%s' % requirement_path])
|
||||||
|
|
||||||
addons_paths = self._get_addons_path()
|
addons_paths = self._get_addons_path()
|
||||||
(server_commit, server_file) = self._get_server_info()
|
(server_commit, server_file) = self._get_server_info()
|
||||||
|
Loading…
Reference in New Issue
Block a user