Skip to content

Commit

Permalink
Expect failure on PyPy.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Mar 21, 2021
1 parent 0c485af commit 202c7a8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setuptools/tests/test_develop.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,10 @@ def install_workaround(site_packages):
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.
Expand Down

0 comments on commit 202c7a8

Please sign in to comment.