Commit f3f59d0f by Will Daly

Merge pull request #1074 from edx/will/quiet-pip

Add -q (quiet) flag to pip install
parents 39c61721 6d3df145
...@@ -29,9 +29,9 @@ task :install_python_prereqs => "ws:migrate" do ...@@ -29,9 +29,9 @@ task :install_python_prereqs => "ws:migrate" do
unchanged = 'Python requirements unchanged, nothing to install' unchanged = 'Python requirements unchanged, nothing to install'
when_changed(unchanged, ['requirements/**/*'], [site_packages_dir]) do when_changed(unchanged, ['requirements/**/*'], [site_packages_dir]) do
ENV['PIP_DOWNLOAD_CACHE'] ||= '.pip_download_cache' ENV['PIP_DOWNLOAD_CACHE'] ||= '.pip_download_cache'
sh('pip install --exists-action w -r requirements/edx/pre.txt') sh('pip install -q --exists-action w -r requirements/edx/pre.txt')
sh('pip install --exists-action w -r requirements/edx/base.txt') sh('pip install -q --exists-action w -r requirements/edx/base.txt')
sh('pip install --exists-action w -r requirements/edx/post.txt') sh('pip install -q --exists-action w -r requirements/edx/post.txt')
# requirements/private.txt is used to install our libs as # requirements/private.txt is used to install our libs as
# working dirs, or for personal-use tools. # working dirs, or for personal-use tools.
if File.file?("requirements/private.txt") if File.file?("requirements/private.txt")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment