From b9a03ecaf5a456a4065210ea2c11d3ea8f9959a7 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 20 Sep 2017 12:47:45 -0400 Subject: [PATCH] disable things on things Signed-off-by: Kenneth Reitz --- pipenv/environments.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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