Skip to content

Commit

Permalink
Backport PR pandas-dev#25558: TST: Skip IntervalTree construction ove…
Browse files Browse the repository at this point in the history
…rflow test on 32bit
  • Loading branch information
jschendel authored and MeeseeksDev[bot] committed Mar 6, 2019
1 parent 969ca46 commit 3243e19
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pandas/tests/indexes/interval/test_interval_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ def test_is_overlapping_trivial(self, closed, left, right):
tree = IntervalTree(left, right, closed=closed)
assert tree.is_overlapping is False

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

0 comments on commit 3243e19

Please sign in to comment.