summaryrefslogtreecommitdiff
path: root/tests/test_upgrade.py
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2012-09-01 16:19:19 +0200
committerJannis Leidel <jannis@leidel.info>2012-09-01 16:19:19 +0200
commit235e1dea02abd3a89ab53ea8035fd4ee8a37887b (patch)
tree5e7b2c5a853aefed870863bed9da6722100e2420 /tests/test_upgrade.py
parent6083597ebebd05d28b57d53c6077bfa7c3b168f8 (diff)
parentb183a327412e83ac24a9c9d28a6bedd94bb69d7b (diff)
downloadpip-threaded-page-getting.tar.gz
Merge branch 'develop' into threaded-page-gettingthreaded-page-getting
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