diff --git a/pipenv/environments.py b/pipenv/environments.py index 95b874b0..6fe913d7 100644 --- a/pipenv/environments.py +++ b/pipenv/environments.py @@ -44,10 +44,11 @@ PIPENV_SKIP_VALIDATION = True if PIPENV_VENV_IN_PROJECT: PIPENV_SHELL_COMPAT = True -# Disable spinner on windows. +# Disable spinner on Windows. if os.name == 'nt': PIPENV_NOSPIN = True +# Disable the spinner on Travis-Ci (and friends). if 'CI' in os.environ: PIPENV_NOSPIN = True