aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-11-20 13:07:30 -0500
committerJason R. Coombs <jaraco@jaraco.com>2017-11-20 13:07:30 -0500
commit9edbd7e80fce13b1895c6932f70361285a65b84b (patch)
tree500ce2f746f0e6342fc3a1b357c13a42a9d73500
parentd51a696eb114bfe4e077b83b750a02282d4d8b47 (diff)
downloadexternal_python_setuptools-9edbd7e80fce13b1895c6932f70361285a65b84b.tar.gz
external_python_setuptools-9edbd7e80fce13b1895c6932f70361285a65b84b.tar.bz2
external_python_setuptools-9edbd7e80fce13b1895c6932f70361285a65b84b.zip
Disable hanging test on PyPy3. Ref #1202.
-rw-r--r--setuptools/tests/test_develop.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/setuptools/tests/test_develop.py b/setuptools/tests/test_develop.py
index cb4ff4b4..a0aaada5 100644
--- a/setuptools/tests/test_develop.py
+++ b/setuptools/tests/test_develop.py
@@ -8,6 +8,7 @@ import site
import sys
import io
import subprocess
+import platform
from setuptools.extern import six
from setuptools.command import test
@@ -153,8 +154,14 @@ class TestNamespaces:
with test.test.paths_on_pythonpath([str(target)]):
subprocess.check_call(develop_cmd)
- @pytest.mark.skipif(bool(os.environ.get("APPVEYOR")),
- reason="https://github.com/pypa/setuptools/issues/851")
+ @pytest.mark.skipif(
+ 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):
"""
Installing two packages sharing the same namespace, one installed