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 9731131 commit 82b42c8Copy full SHA for 82b42c8
tests/functional/test_wheel.py
@@ -342,6 +342,15 @@ 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/wheel/blob"
350
+ "/c87e6ed82b58b41b258a3e8c852af8bc1817bb00"
351
+ "/src/wheel/vendored/packaging/tags.py#L396-L411"
352
+ ),
353
+)
354
def test_pip_wheel_ext_module_with_tmpdir_inside(
355
script: PipTestEnvironment, data: TestData, common_wheels: Path
356
) -> None:
0 commit comments