Skip to content

Commit 1772f6c

Browse files
committed
Skip test on platforms difficult to setup compilers
1 parent 16b3fad commit 1772f6c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

setuptools/tests/test_editable_install.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -887,6 +887,9 @@ class MyBuildExt(build_ext_cls):
887887

888888
dist.cmdclass["build_ext"] = MyBuildExt
889889

890+
@pytest.mark.skipif(
891+
sys.platform != "linux", reason="compilers may fail without correct setup",
892+
)
890893
def test_distutils_leave_inplace_files(self, tmpdir_cwd):
891894
jaraco.path.build({"module.c": ""})
892895
attrs = {

0 commit comments

Comments
 (0)