mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Disable ssh check
This commit is contained in:
@@ -46,7 +46,7 @@ steps:
|
||||
- script: |
|
||||
git submodule sync
|
||||
git submodule update --init --recursive
|
||||
pipenv run pytest -ra -n 4 --junit-xml=junit/test-results.xml --fulltrace tests/
|
||||
pipenv run pytest -ra -n 4 --junit-xml=junit/test-results.xml --fulltrace --timeout=60 tests/
|
||||
failOnStderr: false
|
||||
displayName: Run integration tests
|
||||
env:
|
||||
|
||||
@@ -80,4 +80,4 @@ jobs:
|
||||
PYTHONIOENCODING: 'utf-8'
|
||||
GIT_SSH_COMMAND: ssh -o StrictHostKeyChecking=accept-new -o CheckHostIP=no
|
||||
run: |
|
||||
pipenv run pytest -ra -n 4 --fulltrace tests
|
||||
pipenv run pytest -ra -n 4 --fulltrace --timeout=60 tests
|
||||
|
||||
@@ -217,12 +217,10 @@ def isolate(create_tmpdir):
|
||||
# Ignore PIPENV_ACTIVE so that it works as under a bare environment.
|
||||
os.environ.pop("PIPENV_ACTIVE", None)
|
||||
os.environ.pop("VIRTUAL_ENV", None)
|
||||
global WE_HAVE_GITHUB_SSH_KEYS
|
||||
WE_HAVE_GITHUB_SSH_KEYS = check_github_ssh()
|
||||
|
||||
|
||||
WE_HAVE_INTERNET = check_internet()
|
||||
WE_HAVE_GITHUB_SSH_KEYS = check_github_ssh()
|
||||
WE_HAVE_GITHUB_SSH_KEYS = False
|
||||
|
||||
|
||||
class _Pipfile(object):
|
||||
|
||||
Reference in New Issue
Block a user