Skip to content

Commit c36bb68

Browse files
phoflnoatamir
authored andcommitted
CI: Skip test_round_sanity tests due to failures (pandas-dev#48245)
1 parent e6a93f0 commit c36bb68

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

pandas/tests/scalar/timedelta/test_timedelta.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
iNaT,
1515
)
1616
from pandas._libs.tslibs.dtypes import NpyDatetimeUnit
17-
from pandas.compat import IS64
1817
from pandas.errors import OutOfBoundsTimedelta
1918

2019
import pandas as pd
@@ -691,7 +690,7 @@ def test_round_implementation_bounds(self):
691690
with pytest.raises(OverflowError, match=msg):
692691
Timedelta.max.ceil("s")
693692

694-
@pytest.mark.xfail(not IS64, reason="Failing on 32 bit build", strict=False)
693+
@pytest.mark.xfail(reason="Failing on builds", strict=False)
695694
@given(val=st.integers(min_value=iNaT + 1, max_value=lib.i8max))
696695
@pytest.mark.parametrize(
697696
"method", [Timedelta.round, Timedelta.floor, Timedelta.ceil]

pandas/tests/scalar/timestamp/test_unary_ops.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
)
2222
from pandas._libs.tslibs.dtypes import NpyDatetimeUnit
2323
from pandas._libs.tslibs.period import INVALID_FREQ_ERR_MSG
24-
from pandas.compat import IS64
2524
import pandas.util._test_decorators as td
2625

2726
import pandas._testing as tm
@@ -298,7 +297,7 @@ def test_round_implementation_bounds(self):
298297
with pytest.raises(OverflowError, match=msg):
299298
Timestamp.max.ceil("s")
300299

301-
@pytest.mark.xfail(not IS64, reason="Failing on 32 bit build", strict=False)
300+
@pytest.mark.xfail(reason="Failing on builds", strict=False)
302301
@given(val=st.integers(iNaT + 1, lib.i8max))
303302
@pytest.mark.parametrize(
304303
"method", [Timestamp.round, Timestamp.floor, Timestamp.ceil]

0 commit comments

Comments
 (0)