Commit 9edbd7e8 authored by Jason R. Coombs's avatar Jason R. Coombs

Disable hanging test on PyPy3. Ref #1202.

parent d51a696e
...@@ -8,6 +8,7 @@ import site ...@@ -8,6 +8,7 @@ import site
import sys import sys
import io import io
import subprocess import subprocess
import platform
from setuptools.extern import six from setuptools.extern import six
from setuptools.command import test from setuptools.command import test
...@@ -153,8 +154,14 @@ class TestNamespaces: ...@@ -153,8 +154,14 @@ class TestNamespaces:
with test.test.paths_on_pythonpath([str(target)]): with test.test.paths_on_pythonpath([str(target)]):
subprocess.check_call(develop_cmd) subprocess.check_call(develop_cmd)
@pytest.mark.skipif(bool(os.environ.get("APPVEYOR")), @pytest.mark.skipif(
reason="https://github.com/pypa/setuptools/issues/851") bool(os.environ.get("APPVEYOR")),
reason="https://github.com/pypa/setuptools/issues/851",
)
@pytest.mark.skipif(
platform.python_implementation() == 'PyPy' and six.PY3,
reason="https://github.com/pypa/setuptools/issues/1202",
)
def test_namespace_package_importable(self, tmpdir): def test_namespace_package_importable(self, tmpdir):
""" """
Installing two packages sharing the same namespace, one installed Installing two packages sharing the same namespace, one installed
......
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