Revert "Update to 6.0.8"

This reverts commit f50907e1c1.
This commit is contained in:
Matej Stuchlik 2015-03-10 14:33:02 +01:00
commit 6068911523
5 changed files with 63 additions and 48 deletions

View file

@ -1,3 +1,27 @@
diff -up pip-1.5.6/tests/functional/test_bundle.py.orig pip-1.5.6/tests/functional/test_bundle.py
--- pip-1.5.6/tests/functional/test_bundle.py.orig 2014-11-27 11:23:19.857665215 +0100
+++ pip-1.5.6/tests/functional/test_bundle.py 2014-11-27 11:31:10.992460920 +0100
@@ -1,10 +1,12 @@
import zipfile
import textwrap
+import pytest
from os.path import abspath, exists, join
from pip.download import path_to_url
from tests.lib.local_repos import local_checkout
+@pytest.mark.skipif(True, reason='No network')
def test_create_bundle(script, tmpdir, data):
"""
Test making a bundle. We'll grab one package from the filesystem
@@ -30,6 +32,7 @@ def test_create_bundle(script, tmpdir, d
assert 'build/pip/' in files
+@pytest.mark.skipif(True, reason='No network')
def test_cleanup_after_create_bundle(script, tmpdir, data):
"""
Test clean up after making a bundle. Make sure (build|src)-bundle/ dirs are removed but not src/.
diff -up pip-1.5.6/tests/functional/test_freeze.py.orig pip-1.5.6/tests/functional/test_freeze.py
--- pip-1.5.6/tests/functional/test_freeze.py.orig 2014-11-27 11:23:19.947665742 +0100
+++ pip-1.5.6/tests/functional/test_freeze.py 2014-11-27 11:30:45.937308998 +0100