summaryrefslogtreecommitdiff
path: root/setuptools/tests
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2022-08-15 19:04:57 +0100
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2022-08-15 19:04:57 +0100
commit1772f6c0c52c4b64f262d29fe38cc596852ce391 (patch)
tree9d64c754ddd2ad87db87d081b60159d7ed4ad7e7 /setuptools/tests
parent16b3fad1b9fc26986eb8ddc7af717f0ba083b85d (diff)
downloadpython-setuptools-git-1772f6c0c52c4b64f262d29fe38cc596852ce391.tar.gz
Skip test on platforms difficult to setup compilers
Diffstat (limited to 'setuptools/tests')
-rw-r--r--setuptools/tests/test_editable_install.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/setuptools/tests/test_editable_install.py b/setuptools/tests/test_editable_install.py
index c83e2e46..cceb6653 100644
--- a/setuptools/tests/test_editable_install.py
+++ b/setuptools/tests/test_editable_install.py
@@ -887,6 +887,9 @@ class TestCustomBuildExt:
dist.cmdclass["build_ext"] = MyBuildExt
+ @pytest.mark.skipif(
+ sys.platform != "linux", reason="compilers may fail without correct setup",
+ )
def test_distutils_leave_inplace_files(self, tmpdir_cwd):
jaraco.path.build({"module.c": ""})
attrs = {