Skip to content

Commit

Permalink
tests: github repositories should use https (pypa#4838)
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg authored and kianasun committed Mar 28, 2018
1 parent 2371ffa commit ea8a1d4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/functional/test_install_vcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def test_git_with_tag_name_and_update(script, tmpdir):
result = script.pip(
'install', '-e', '%s#egg=pip-test-package' %
local_checkout(
'git+http://github.com/pypa/pip-test-package.git',
'git+https://github.com/pypa/pip-test-package.git',
tmpdir.join("cache"),
),
expect_error=True,
Expand All @@ -194,7 +194,7 @@ def test_git_with_tag_name_and_update(script, tmpdir):
'install', '--global-option=--version', '-e',
'%s@0.1.2#egg=pip-test-package' %
local_checkout(
'git+http://github.com/pypa/pip-test-package.git',
'git+https://github.com/pypa/pip-test-package.git',
tmpdir.join("cache"),
),
expect_error=True,
Expand All @@ -211,7 +211,7 @@ def test_git_branch_should_not_be_changed(script, tmpdir):
script.pip(
'install', '-e', '%s#egg=pip-test-package' %
local_checkout(
'git+http://github.com/pypa/pip-test-package.git',
'git+https://github.com/pypa/pip-test-package.git',
tmpdir.join("cache"),
),
expect_error=True,
Expand All @@ -229,7 +229,7 @@ def test_git_with_non_editable_unpacking(script, tmpdir):
result = script.pip(
'install', '--global-option=--version',
local_checkout(
'git+http://github.com/pypa/pip-test-package.git@0.1.2'
'git+https://github.com/pypa/pip-test-package.git@0.1.2'
'#egg=pip-test-package',
tmpdir.join("cache")
),
Expand Down

0 comments on commit ea8a1d4

Please sign in to comment.