diff options
author | mattip <matti.picus@gmail.com> | 2018-05-24 20:00:33 -0700 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2018-05-24 20:00:33 -0700 |
commit | c4813a966d627577f0b2b1e9d106d5fd9c6a3d0d (patch) | |
tree | 2edeabcb36293d2b88c6648d6777fb263105438d | |
parent | 055620ccd669ea56d83391e107a467824cd5b60b (diff) | |
download | numpy-c4813a966d627577f0b2b1e9d106d5fd9c6a3d0d.tar.gz |
TST: skip ctypes memoryview issue on old python
-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 |