summaryrefslogtreecommitdiff
path: root/tests/test_upgrade.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_upgrade.py')
-rw-r--r--tests/test_upgrade.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_upgrade.py b/tests/test_upgrade.py
index 795e68f85..24449aec0 100644
--- a/tests/test_upgrade.py
+++ b/tests/test_upgrade.py
@@ -207,8 +207,8 @@ def test_upgrade_vcs_req_with_no_dists_found():
def test_upgrade_vcs_req_with_dist_found():
"""It can upgrade a VCS requirement that has distributions on the index."""
reset_env()
- req = "%s#egg=virtualenv" % local_checkout(
- "git+git://github.com/pypa/virtualenv@c21fef2c2d53cf19f49bcc37f9c058a33fb50499")
+ # TODO(pnasrat) Using local_checkout fails on windows - oddness with the test path urls/git.
+ req = "%s#egg=virtualenv" % "git+git://github.com/pypa/virtualenv@c21fef2c2d53cf19f49bcc37f9c058a33fb50499"
run_pip("install", req)
result = run_pip("install", "-U", req)
assert not "pypi.python.org" in result.stdout, result.stdout