diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2021-11-10 21:41:02 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-11-10 21:41:02 -0500 |
| commit | 39e3806dc22c8e47eca12b80c57245615d45b6a2 (patch) | |
| tree | c3fc1b05f188c77f3fc8516f7dd24ee2912a8706 | |
| parent | c0f549533fe9a6d4d4cad157f2dcea860a34fd6e (diff) | |
| download | python-setuptools-git-39e3806dc22c8e47eca12b80c57245615d45b6a2.tar.gz | |
Disable some virtualenv integration tests for PyPy.
| -rw-r--r-- | setuptools/tests/test_virtualenv.py | 4 |
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): """ |
