From a3702a2d4876dc1a10d256b15b285a3689fee2b2 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 14 Sep 2017 18:15:49 -0400 Subject: [PATCH] no spin for travis-ci Signed-off-by: Kenneth Reitz --- pipenv/environments.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pipenv/environments.py b/pipenv/environments.py index 0e22ebdc..f2472c6f 100644 --- a/pipenv/environments.py +++ b/pipenv/environments.py @@ -39,6 +39,9 @@ if PIPENV_VENV_IN_PROJECT: if os.name == 'nt': PIPENV_NOSPIN = True +if 'CI' in os.environ: + PIPENV_NOSPIN = True + PIPENV_HIDE_EMOJIS = os.environ.get('PIPENV_HIDE_EMOJIS') if os.name == 'nt': PIPENV_HIDE_EMOJIS = True