Skip to content

Commit

Permalink
Skip test failing on new Python/setuptools combo
Browse files Browse the repository at this point in the history
This is a temporary measure until we fix the importlib.metadata backend.
  • Loading branch information
uranusjr committed Sep 12, 2023
1 parent 83ca10a commit dc188a8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/functional/test_install_extras.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,10 @@ def test_install_fails_if_extra_at_end(
assert "Extras after version" in result.stderr


@pytest.mark.skipif(
"sys.version_info >= (3, 11)",
reason="Setuptools incompatibility with importlib.metadata; see GH-12267",
)
def test_install_special_extra(script: PipTestEnvironment) -> None:
# Check that uppercase letters and '-' are dealt with
# make a dummy project
Expand Down

0 comments on commit dc188a8

Please sign in to comment.