Dropped because they apparently aren't needed in 3.x;
unknown if this is 2.x vs 3.x or i386 vs arm*
Author: Rebecca N. Palmer <rebecca_palmer@zoho.com>
Forwarded: not-needed
Gbp-Pq: Name skiptests_intervaltree_32bit.patch
expected = (50 + np.iinfo(np.int64).max) / 2
assert result == expected
+ @pytest.mark.xfail(not IS64, reason="GH 23440", raises=TypeError)
@pytest.mark.parametrize(
"left, right, expected",
[
import pytest
from pandas._libs import index as libindex
+from pandas.compat import IS64
import pandas as pd
from pandas import (
expected = Series([1, 6, 2, 8, 7], index=expected_index, name="value")
tm.assert_series_equal(result, expected)
+ @pytest.mark.xfail(not IS64, reason="GH 23440", raises=TypeError)
@pytest.mark.parametrize(
"base",
[101, 1010],
import numpy as np
import pytest
+from pandas.compat import IS64
+
from pandas import (
Index,
Interval,
obj.loc[[4, 5, 6]]
+@pytest.mark.xfail(not IS64, reason="GH 23440", raises=TypeError)
@pytest.mark.parametrize(
"intervals",
[