From e4eac75860053bf9f3223ae3ae034588b92cae2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bern=C3=A1t=20G=C3=A1bor?= Date: Mon, 23 Oct 2023 09:26:32 -0700 Subject: [PATCH] Fix the CI (#2655) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bernát Gábor --- tests/unit/create/test_creator.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/unit/create/test_creator.py b/tests/unit/create/test_creator.py index cfb38a60e..ce9437694 100644 --- a/tests/unit/create/test_creator.py +++ b/tests/unit/create/test_creator.py @@ -97,6 +97,8 @@ def system(session_app_data): for k, v in CURRENT.creators().key_to_meta.items(): if k in CURRENT_CREATORS: if v.can_copy: + if k == "venv" and CURRENT.implementation == "PyPy" and CURRENT.pypy_version_info >= [7, 3, 13]: + continue # https://foss.heptapod.net/pypy/pypy/-/issues/4019 CREATE_METHODS.append((k, "copies")) if v.can_symlink: CREATE_METHODS.append((k, "symlinks"))