8000 TST: Skip IntervalTree construction overflow test on 32bit by jschendel · Pull Request #25558 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

TST: Skip IntervalTree construction overflow test on 32bit #25558

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 6, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
TST: Skip IntervalTree construction overflow test on 32bit
  • Loading branch information
jschendel committed Mar 6, 2019
commit 75ebffb6ac8107721e1ec4a05235fce31c736c0c
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