summaryrefslogtreecommitdiff
path: root/setuptools/tests
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-12-20 20:42:36 -0500
committerJason R. Coombs <jaraco@jaraco.com>2020-12-20 20:42:36 -0500
commit8a99cc4660582b651d91421d4f47cb988a355741 (patch)
tree5a8a5100cd0a595eb6c8704547021dc3d6c7f451 /setuptools/tests
parenta2487bbcae85d70e47d4e46257e5193ab7e05ab6 (diff)
downloadpython-setuptools-git-8a99cc4660582b651d91421d4f47cb988a355741.tar.gz
Disable integration tests on PyPy on Windows. Ref #2496.
Diffstat (limited to 'setuptools/tests')
-rw-r--r--setuptools/tests/test_integration.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/setuptools/tests/test_integration.py b/setuptools/tests/test_integration.py
index 04ba62f7..b5578312 100644
--- a/setuptools/tests/test_integration.py
+++ b/setuptools/tests/test_integration.py
@@ -15,6 +15,13 @@ from setuptools.command import easy_install as easy_install_pkg
from setuptools.dist import Distribution
+pytestmark = pytest.mark.skipif(
+ 'platform.python_implementation() == "PyPy" and '
+ 'platform.system() == "Windows"',
+ reason="pypa/setuptools#2496",
+)
+
+
def setup_module(module):
packages = 'stevedore', 'virtualenvwrapper', 'pbr', 'novaclient'
for pkg in packages: