Skip to content

Commit 39e3806

Browse files
committed
Disable some virtualenv integration tests for PyPy.
1 parent c0f5495 commit 39e3806

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

setuptools/tests/test_virtualenv.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ def skip_network(param):
8989
return list(versions)
9090

9191

92+
@pytest.mark.skipif(
93+
'platform.python_implementation() == "PyPy"',
94+
reason="https://github.com/pypa/setuptools/pull/2865#issuecomment-965834995",
95+
)
9296
@pytest.mark.parametrize('pip_version', _get_pip_versions())
9397
def test_pip_upgrade_from_source(pip_version, tmp_src, virtualenv):
9498
"""

0 commit comments

Comments
 (0)