We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cb0868 commit e4eac75Copy full SHA for e4eac75
tests/unit/create/test_creator.py
@@ -97,6 +97,8 @@ def system(session_app_data):
97
for k, v in CURRENT.creators().key_to_meta.items():
98
if k in CURRENT_CREATORS:
99
if v.can_copy:
100
+ if k == "venv" and CURRENT.implementation == "PyPy" and CURRENT.pypy_version_info >= [7, 3, 13]:
101
+ continue # https://foss.heptapod.net/pypy/pypy/-/issues/4019
102
CREATE_METHODS.append((k, "copies"))
103
if v.can_symlink:
104
CREATE_METHODS.append((k, "symlinks"))
0 commit comments