Commit 8a99cc46 authored by Jason R. Coombs's avatar Jason R. Coombs

Disable integration tests on PyPy on Windows. Ref #2496.

parent a2487bbc
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment