Skip to content

Commit 42f76e9

Browse files
committed
CI: Skip test_round_sanity tests due to failures (pandas-dev#48245)
# Conflicts: # pandas/tests/scalar/timedelta/test_timedelta.py
1 parent 3e938c2 commit 42f76e9

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
@@ -13,7 +13,6 @@
1313
NaT,
1414
iNaT,
1515
)
16-
from pandas.compat import IS64
1716

1817
import pandas as pd
1918
from pandas import (
@@ -414,7 +413,7 @@ def test_round_implementation_bounds(self):
414413
with pytest.raises(OverflowError, match=msg):
415414
Timedelta.max.ceil("s")
416415

417-
@pytest.mark.xfail(not IS64, reason="Failing on 32 bit build", strict=False)
416+
@pytest.mark.xfail(reason="Failing on builds", strict=False)
418417
@given(val=st.integers(min_value=iNaT + 1, max_value=lib.i8max))
419418
@pytest.mark.parametrize(
420419
"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
@@ -20,7 +20,6 @@
2020
to_offset,
2121
)
2222
from pandas._libs.tslibs.period import INVALID_FREQ_ERR_MSG
23-
from pandas.compat import IS64
2423
import pandas.util._test_decorators as td
2524

2625
import pandas._testing as tm
@@ -281,7 +280,7 @@ def test_round_implementation_bounds(self):
281280
with pytest.raises(OverflowError, match=msg):
282281
Timestamp.max.ceil("s")
283282

284-
@pytest.mark.xfail(not IS64, reason="Failing on 32 bit build", strict=False)
283+
@pytest.mark.xfail(reason="Failing on builds", strict=False)
285284
@given(val=st.integers(iNaT + 1, lib.i8max))
286285
@pytest.mark.parametrize(
287286
"method", [Timestamp.round, Timestamp.floor, Timestamp.ceil]

0 commit comments

Comments
 (0)