1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Don't rely on appspot

This commit is contained in:
Donald Stufft 2014-06-10 12:35:51 -04:00
parent 3eaea35f2e
commit ee2cb9c926

View file

@ -148,10 +148,10 @@ def _test_config_file_override_stack(script, virtualenv, config_file):
[global]
index-url = http://download.zope.org/ppix
[install]
index-url = http://pypi.appspot.com/
index-url = https://pypi.gocept.com/
"""))
result = script.pip('install', '-vvv', 'INITools', expect_error=True)
assert "Getting page http://pypi.appspot.com/INITools" in result.stdout
assert "Getting page https://pypi.gocept.com/INITools" in result.stdout
result = script.pip(
'install', '-vvv', '--index-url', 'http://pypi.python.org/simple',
'INITools',
@ -161,7 +161,7 @@ def _test_config_file_override_stack(script, virtualenv, config_file):
"Getting page http://download.zope.org/ppix/INITools"
not in result.stdout
)
assert "Getting page http://pypi.appspot.com/INITools" not in result.stdout
assert "Getting page https://pypi.gocept.com/INITools" not in result.stdout
assert (
"Getting page http://pypi.python.org/simple/INITools" in result.stdout
)