Skip to content

Commit ee13a09

Browse files
committed
xfail test_pip_wheel_ext_module_with_tmpdir_inside
This test fails for unexplained reasons only on MacOS and python 3.7 and 3.8.
1 parent 8271fdb commit ee13a09

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/functional/test_wheel.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,14 @@ def test_pip_wheel_with_user_set_in_config(
342342
sys.platform.startswith("win"),
343343
reason="The empty extension module does not work on Win",
344344
)
345+
@pytest.mark.xfail(
346+
condition=sys.platform == "darwin" and sys.version_info < (3, 9),
347+
reason=(
348+
"Unexplained 'no module named platform' in "
349+
"https://github.com/pypa/packaging/blob/"
350+
"5b34465682d40ddd42dd6cba88e158e1674de7b9/src/packaging/tags.py#L396-L411"
351+
),
352+
)
345353
def test_pip_wheel_ext_module_with_tmpdir_inside(
346354
script: PipTestEnvironment, data: TestData, common_wheels: Path
347355
) -> None:

0 commit comments

Comments
 (0)