From 2f16327060394b21fadb6342ea83eec324512aaa Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Mon, 6 Feb 2023 17:03:43 -0500 Subject: [PATCH] Mark test as xfail on Windows. Ref pypa/distutils#195. --- distutils/tests/test_ccompiler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/distutils/tests/test_ccompiler.py b/distutils/tests/test_ccompiler.py index c868a56bec..aa4c7b359e 100644 --- a/distutils/tests/test_ccompiler.py +++ b/distutils/tests/test_ccompiler.py @@ -55,6 +55,7 @@ def test_set_include_dirs(c_file): compiler.compile(_make_strs([c_file])) +@pytest.mark.xfail('platform.system() == "Windows"') def test_has_function_prototype(): # Issue https://github.com/pypa/setuptools/issues/3648 # Test prototype-generating behavior.