diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2023-02-06 17:03:43 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2023-02-06 17:03:43 -0500 |
| commit | 2f16327060394b21fadb6342ea83eec324512aaa (patch) | |
| tree | fdb56c594ff24346334c1caedbb33194d7cc7c6f | |
| parent | c2bc8135db186a007d02770af3419dc012404e6f (diff) | |
| download | python-setuptools-git-2f16327060394b21fadb6342ea83eec324512aaa.tar.gz | |
Mark test as xfail on Windows. Ref pypa/distutils#195.
| -rw-r--r-- | distutils/tests/test_ccompiler.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/distutils/tests/test_ccompiler.py b/distutils/tests/test_ccompiler.py index c868a56b..aa4c7b35 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. |
