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 committed Mar 19, 2023
1 parent d32afa6 commit a6dc754
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 a6dc754

Please sign in to comment.