Skip to content

Commit 52ea391

Browse files
committed
strict=False
1 parent 8474523 commit 52ea391

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas/tests/scalar/timedelta/test_timedelta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ def test_round_implementation_bounds(self):
691691
with pytest.raises(OverflowError, match=msg):
692692
Timedelta.max.ceil("s")
693693

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

pandas/tests/scalar/timestamp/test_unary_ops.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ def test_round_implementation_bounds(self):
298298
with pytest.raises(OverflowError, match=msg):
299299
Timestamp.max.ceil("s")
300300

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

0 commit comments

Comments
 (0)