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:
parent
3fd8fde14b
commit
8f52335ae5
1 changed files with 6 additions and 1 deletions
|
@ -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(
|
||||
|
|
Loading…
Reference in a new issue