From 8b256f5736847adeb7f4e518b9e5cd99e89b168d Mon Sep 17 00:00:00 2001 From: mayeut Date: Sat, 31 Oct 2020 14:29:17 +0100 Subject: [PATCH] Use custom pip while waiting for pypa/pip#9077 --- tests/integration/test_manylinux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_manylinux.py b/tests/integration/test_manylinux.py index 5d8cc1d3..265dc7ef 100644 --- a/tests/integration/test_manylinux.py +++ b/tests/integration/test_manylinux.py @@ -154,7 +154,7 @@ def tmp_docker_image(base, commands, setup_env={}): @pytest.fixture(scope='session') def docker_python_img(): """The Python base image with up-to-date pip""" - with tmp_docker_image(PYTHON_IMAGE_ID, ['pip install -U pip']) as img_id: + with tmp_docker_image(PYTHON_IMAGE_ID, ['pip install -U git+https://github.com/mayeut/pip.git@14ff483c9bc578d723ec7578375bfd16551dfd04']) as img_id: yield img_id @pytest.fixture(scope='session', params=MANYLINUX_IMAGES.keys())