Skip to content

Commit

Permalink
xfail test with colon in console entry point name
Browse files Browse the repository at this point in the history
This was supported by setup.py install but not by our wheel
installation logic.
  • Loading branch information
sbidoul authored and pradyunsg committed Mar 27, 2023
1 parent 3fd8fde commit 8f52335
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/functional/test_uninstall.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 8f52335

Please sign in to comment.