From 9d9baee3c3c191287958addca7451c4277deacb0 Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Wed, 18 Oct 2023 04:18:35 -0400 Subject: [PATCH] Skip test because truststore is now included. --- tests/integration/test_install_basic.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/test_install_basic.py b/tests/integration/test_install_basic.py index 02d5b855..db0a77a8 100644 --- a/tests/integration/test_install_basic.py +++ b/tests/integration/test_install_basic.py @@ -526,6 +526,7 @@ def test_install_does_not_exclude_packaging(pipenv_instance_pypi): @pytest.mark.basic @pytest.mark.install @pytest.mark.needs_internet +@pytest.mark.skip(reason="pip 23.3 now vendors in truststore and so test assumptions invalid ") def test_install_will_supply_extra_pip_args(pipenv_instance_pypi): with pipenv_instance_pypi() as p: c = p.pipenv("""install -v dataclasses-json --extra-pip-args="--use-feature=truststore --proxy=test" """)