summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2018-05-25 15:08:39 -0600
committerGitHub <noreply@github.com>2018-05-25 15:08:39 -0600
commit0dfb8f06fc9f80f1618624f9bbf7565adf735235 (patch)
tree21868f383b49e268c78478f2b70f79e08e672b4f
parentc8c9f1eef5293e2275812e5d9edf0a73d9043467 (diff)
parentc4813a966d627577f0b2b1e9d106d5fd9c6a3d0d (diff)
downloadnumpy-0dfb8f06fc9f80f1618624f9bbf7565adf735235.tar.gz
Merge pull request #11159 from mattip/skip-ctypes-issue
TST: Skip ctypes dependent test that fails on Python < 2.7.7.
-rw-r--r--numpy/core/tests/test_multiarray.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/core/tests/test_multiarray.py b/numpy/core/tests/test_multiarray.py
index 3ca201edd..a60f2cd92 100644
--- a/numpy/core/tests/test_multiarray.py
+++ b/numpy/core/tests/test_multiarray.py
@@ -6517,6 +6517,7 @@ class TestNewBufferProtocol(object):
a = np.empty((1,) * 32)
self._check_roundtrip(a)
+ @pytest.mark.skipif(sys.version_info < (2, 7, 7), reason="See gh-11115")
def test_error_too_many_dims(self):
def make_ctype(shape, scalar_type):
t = scalar_type