summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-03-21 09:51:21 -0400
committerJason R. Coombs <jaraco@jaraco.com>2021-03-21 09:51:21 -0400
commit202c7a808e61a415d6a8c724a5d8fe664301863b (patch)
tree1bfb75c08aa73366083d63764002945095a58f2e
parent0c485af05591ba869b8adb96802d1cf4b49fe28d (diff)
downloadpython-setuptools-git-feature/restore-editable-pythonpath.tar.gz
-rw-r--r--setuptools/tests/test_develop.py4
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.