Skip to content

Commit e4eac75

Browse files
authored
Fix the CI (#2655)
Signed-off-by: Bernát Gábor <[email protected]>
1 parent 6cb0868 commit e4eac75

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/unit/create/test_creator.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ def system(session_app_data):
9797
for k, v in CURRENT.creators().key_to_meta.items():
9898
if k in CURRENT_CREATORS:
9999
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
100102
CREATE_METHODS.append((k, "copies"))
101103
if v.can_symlink:
102104
CREATE_METHODS.append((k, "symlinks"))

0 commit comments

Comments
 (0)