diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-08-15 19:04:57 +0100 |
---|---|---|
committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-08-15 19:04:57 +0100 |
commit | 1772f6c0c52c4b64f262d29fe38cc596852ce391 (patch) | |
tree | 9d64c754ddd2ad87db87d081b60159d7ed4ad7e7 /setuptools/tests | |
parent | 16b3fad1b9fc26986eb8ddc7af717f0ba083b85d (diff) | |
download | python-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.py | 3 |
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 = { |