From 305e6e7f5a0b4a75bc9d69a8154e75262c158477 Mon Sep 17 00:00:00 2001 From: Blazej Michalik Date: Sat, 20 Feb 2021 01:04:06 +0100 Subject: [PATCH] Remove legacy resolver from tests --- tests/functional/test_install.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tests/functional/test_install.py b/tests/functional/test_install.py index ff1b35cb258..c5d9ad750b7 100644 --- a/tests/functional/test_install.py +++ b/tests/functional/test_install.py @@ -495,17 +495,14 @@ def test_vcs_url_urlquote_normalization( ) -@pytest.mark.parametrize("resolver", ["", "--use-deprecated=legacy-resolver"]) @pytest.mark.usefixtures("with_wheel") def test_basic_install_from_local_directory( - script: PipTestEnvironment, data: TestData, resolver: str + script: PipTestEnvironment, data: TestData ) -> None: """ Test installing from a local directory. """ args = ["install"] - if resolver: - args.append(resolver) to_install = data.packages.joinpath("FSPkg") args.append(to_install) result = script.pip(*args)