diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-03-21 09:51:21 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-03-21 09:51:21 -0400 |
commit | 202c7a808e61a415d6a8c724a5d8fe664301863b (patch) | |
tree | 1bfb75c08aa73366083d63764002945095a58f2e /setuptools/tests/test_develop.py | |
parent | 0c485af05591ba869b8adb96802d1cf4b49fe28d (diff) | |
download | python-setuptools-git-feature/restore-editable-pythonpath.tar.gz |
Expect failure on PyPy.feature/restore-editable-pythonpath
Diffstat (limited to 'setuptools/tests/test_develop.py')
-rw-r--r-- | setuptools/tests/test_develop.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/setuptools/tests/test_develop.py b/setuptools/tests/test_develop.py index a0e84b9a..df8db4e2 100644 --- a/setuptools/tests/test_develop.py +++ b/setuptools/tests/test_develop.py @@ -213,6 +213,10 @@ class TestNamespaces: site.addsitedir(str(here)) """).lstrip()) + @pytest.mark.xfail( + platform.python_implementation() == 'PyPy', + reason="Workaround fails on PyPy (why?)", + ) def test_editable_prefix(self, tmp_path, sample_project): """ Editable install to a prefix should be discoverable. |