Skip to content

Commit a6dc754

Browse files
committed
xfail test with colon in console entry point name
This was supported by setup.py install but not by our wheel installation logic.
1 parent d32afa6 commit a6dc754

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/functional/test_uninstall.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,12 @@ def test_uninstall_overlapping_package(
222222
"console_scripts",
223223
[
224224
"test_ = distutils_install:test",
225-
"test_:test_ = distutils_install:test_test",
225+
pytest.param(
226+
"test_:test_ = distutils_install:test_test",
227+
marks=pytest.mark.xfail(
228+
reason="colon not supported in wheel entry point name?"
229+
),
230+
),
226231
],
227232
)
228233
def test_uninstall_entry_point_colon_in_name(

0 commit comments

Comments
 (0)