1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

xfail test with colon in console entry point name

This was supported by setup.py install but not by our wheel
installation logic.
This commit is contained in:
Stéphane Bidoul 2023-03-19 16:47:03 +01:00 committed by Pradyun Gedam
parent 3fd8fde14b
commit 8f52335ae5

View file

@ -222,7 +222,12 @@ def test_uninstall_overlapping_package(
"console_scripts",
[
"test_ = distutils_install:test",
"test_:test_ = distutils_install:test_test",
pytest.param(
"test_:test_ = distutils_install:test_test",
marks=pytest.mark.xfail(
reason="colon not supported in wheel entry point name?"
),
),
],
)
def test_uninstall_entry_point_colon_in_name(