Skip to content

Commit

Permalink
Remove legacy resolver from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMino committed Mar 3, 2022
1 parent a4f7508 commit 305e6e7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/functional/test_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 305e6e7

Please sign in to comment.