diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-05-25 15:08:39 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-25 15:08:39 -0600 |
commit | 0dfb8f06fc9f80f1618624f9bbf7565adf735235 (patch) | |
tree | 21868f383b49e268c78478f2b70f79e08e672b4f /numpy | |
parent | c8c9f1eef5293e2275812e5d9edf0a73d9043467 (diff) | |
parent | c4813a966d627577f0b2b1e9d106d5fd9c6a3d0d (diff) | |
download | numpy-0dfb8f06fc9f80f1618624f9bbf7565adf735235.tar.gz |
Merge pull request #11159 from mattip/skip-ctypes-issue
TST: Skip ctypes dependent test that fails on Python < 2.7.7.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/tests/test_multiarray.py | 1 |
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 |