skip validation

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2017-09-07 16:51:06 -04:00
parent 92af904ad0
commit 09fbd15e71
3 changed files with 2 additions and 2 deletions
-1
View File
@@ -253,7 +253,6 @@ $ pipenv lock
variables. To activate them, simply create the variable in your shell and pipenv
will detect it.
- ``PIPENV_SKIP_VALIDATION`` — Tells Pipenv to skip ``Pipfile`` validation (case-checking) — useful for slow internet connections.
- ``PIPENV_SHELL_COMPAT`` — Toggle from our default ``pipenv shell`` mode to classic.
(Suggested for use with pyenv).
+1
View File
@@ -1197,6 +1197,7 @@ def run(command, args, three=None, python=False):
@click.option('--three/--two', is_flag=True, default=None, help="Use Python 3/2 when creating virtualenv.")
@click.option('--python', default=False, nargs=1, help="Specify which version of Python virtualenv should use.")
def check(three=None, python=False):
# Ensure that virtualenv is available.
ensure_project(three=three, python=python, validate=False)
+1 -1
View File
@@ -29,7 +29,7 @@ PIPENV_USE_SYSTEM = os.environ.get('VIRTUAL_ENV') if 'PIPENV_IGNORE_VIRTUALENVS'
PIPENV_USE_HASHES = True
# Tells pipenv to skip case-checking (slow internet connections).
PIPENV_SKIP_VALIDATION = os.environ.get('PIPENV_SKIP_VALIDATION')
PIPENV_SKIP_VALIDATION = True
# Use shell compatibility mode when using venv in project mode.
if PIPENV_VENV_IN_PROJECT: