We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8271fdb commit ee13a09Copy full SHA for ee13a09
tests/functional/test_wheel.py
@@ -342,6 +342,14 @@ def test_pip_wheel_with_user_set_in_config(
342
sys.platform.startswith("win"),
343
reason="The empty extension module does not work on Win",
344
)
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
+)
353
def test_pip_wheel_ext_module_with_tmpdir_inside(
354
script: PipTestEnvironment, data: TestData, common_wheels: Path
355
) -> None:
0 commit comments