diff options
author | mattip <matti.picus@gmail.com> | 2019-08-28 14:45:17 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-08-28 14:45:17 +0300 |
commit | fa0337900b7b96936b0c9562864f286e37a97ff1 (patch) | |
tree | 9e67b9a6d06fcb23634f1b96f93a8d57ea12881a /numpy | |
parent | 2accb7cd375f2500b2106167a73d5f452dd60993 (diff) | |
download | numpy-fa0337900b7b96936b0c9562864f286e37a97ff1.tar.gz |
BUG: skip new test on windows, 32-bit
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/tests/test_regression.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/core/tests/test_regression.py b/numpy/core/tests/test_regression.py index ce0df2695..54e61662b 100644 --- a/numpy/core/tests/test_regression.py +++ b/numpy/core/tests/test_regression.py @@ -2501,6 +2501,8 @@ class TestRegression(object): #gh-13659, would raise in broadcasting [x=t for x in result] np.array([t]) + @pytest.mark.skipif(sys.maxsize < 2 ** 31 + 1, reason='overflows 32-bit python') + @pytest.mark.skipif(sys.platform == 'win32', reason='overflows on windows') def test_to_ctypes(self): #gh-14214 arr = np.zeros((2 ** 31 + 1,), 'b') |