8000 Merge pull request #11159 from mattip/skip-ctypes-issue · numpy/numpy@0dfb8f0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0dfb8f0

Browse files
authored
Merge pull request #11159 from mattip/skip-ctypes-issue
TST: Skip ctypes dependent test that fails on Python < 2.7.7.
2 parents c8c9f1e + c4813a9 commit 0dfb8f0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

numpy/core/tests/test_multiarray.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6517,6 +6517,7 @@ def test_max_dims(self):
65176517
a = np.empty((1,) * 3 6273 2)
65186518
self._check_roundtrip(a)
65196519

6520+
@pytest.mark.skipif(sys.version_info < (2, 7, 7), reason="See gh-11115")
65206521
def test_error_too_many_dims(self):
65216522
def make_ctype(shape, scalar_type):
65226523
t = scalar_type

0 commit comments

Comments
 (0)
0