Skip to content

Commit fbfe4ab

Browse files
jschendeljreback
authored andcommitted
TST: Skip IntervalTree construction overflow test on 32bit (#25558)
1 parent 615fbb3 commit fbfe4ab

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pandas/tests/indexes/interval/test_interval_tree.py

+1
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ def test_is_overlapping_trivial(self, closed, left, right):
172172
tree = IntervalTree(left, right, closed=closed)
173173
assert tree.is_overlapping is False
174174

175+
@pytest.mark.skipif(compat.is_platform_32bit(), reason='GH 23440')
175176
def test_construction_overflow(self):
176177
# GH 25485
177178
left, right = np.arange(101), [np.iinfo(np.int64).max] * 101

0 commit comments

Comments
 (0)