summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-11-10 21:41:02 -0500
committerJason R. Coombs <jaraco@jaraco.com>2021-11-10 21:41:02 -0500
commit39e3806dc22c8e47eca12b80c57245615d45b6a2 (patch)
treec3fc1b05f188c77f3fc8516f7dd24ee2912a8706
parentc0f549533fe9a6d4d4cad157f2dcea860a34fd6e (diff)
downloadpython-setuptools-git-39e3806dc22c8e47eca12b80c57245615d45b6a2.tar.gz
Disable some virtualenv integration tests for PyPy.
-rw-r--r--setuptools/tests/test_virtualenv.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/setuptools/tests/test_virtualenv.py b/setuptools/tests/test_virtualenv.py
index 2abedfc7..5cd49a0f 100644
--- a/setuptools/tests/test_virtualenv.py
+++ b/setuptools/tests/test_virtualenv.py
@@ -89,6 +89,10 @@ def _get_pip_versions():
return list(versions)
+@pytest.mark.skipif(
+ 'platform.python_implementation() == "PyPy"',
+ reason="https://github.com/pypa/setuptools/pull/2865#issuecomment-965834995",
+)
@pytest.mark.parametrize('pip_version', _get_pip_versions())
def test_pip_upgrade_from_source(pip_version, tmp_src, virtualenv):
"""