Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable pip progress bar #1629

Merged
merged 1 commit into from Jan 7, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/travis/build/script/python.rb
Expand Up @@ -35,6 +35,7 @@ def announce
sh.cmd 'python --version'
sh.cmd 'pip --version'
sh.export 'PIP_DISABLE_PIP_VERSION_CHECK', '1', echo: false
sh.export 'PIP_PROGRESS_BAR', 'off', echo: false
end

def setup_cache
Expand All @@ -61,7 +62,7 @@ def install
def script
# This always fails the build, asking the user to provide a custom :script.
# The Python ecosystem has no good default build command most of the
# community aggrees on. Per discussion with jezjez, josh-k and others. MK
# community agrees on. Per discussion with jezjez, josh-k and others. MK
sh.failure SCRIPT_MISSING
end

Expand Down