File tree Expand file tree Collapse file tree 2 files changed +5
-12
lines changed Expand file tree Collapse file tree 2 files changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -691,19 +691,14 @@ def test_round_implementation_bounds(self):
691
691
with pytest .raises (OverflowError , match = msg ):
692
692
Timedelta .max .ceil ("s" )
693
693
694
+ @pytest .mark .xfail (not IS64 , reason = "Failing on 32 bit build" )
694
695
@given (val = st .integers (min_value = iNaT + 1 , max_value = lib .i8max ))
695
696
@pytest .mark .parametrize (
696
697
"method" ,
697
698
[
698
- pytest .param (
699
- Timedelta .round ,
700
- marks = pytest .mark .xfail (not IS64 , reason = "Failing on 32 bit build" ),
701
- ),
699
+ Timedelta .round ,
702
700
Timedelta .floor ,
703
- pytest .param (
704
- Timedelta .ceil ,
705
- marks = pytest .mark .xfail (not IS64 , reason = "Failing on 32 bit build" ),
706
- ),
701
+ Timedelta .ceil ,
707
702
],
708
703
)
709
704
def test_round_sanity (self , val , method ):
Original file line number Diff line number Diff line change @@ -298,15 +298,13 @@ def test_round_implementation_bounds(self):
298
298
with pytest .raises (OverflowError , match = msg ):
299
299
Timestamp .max .ceil ("s" )
300
300
301
+ @pytest .mark .xfail (not IS64 , reason = "Failing on 32 bit build" )
301
302
@given (val = st .integers (iNaT + 1 , lib .i8max ))
302
303
@pytest .mark .parametrize (
303
304
"method" ,
304
305
[
305
306
Timestamp .round ,
306
- pytest .param (
307
- Timedelta .floor ,
308
- marks = pytest .mark .xfail (not IS64 , reason = "Failing on 32 bit build" ),
309
- ),
307
+ Timedelta .floor ,
310
308
Timestamp .ceil ,
311
309
],
312
310
)
You can’t perform that action at this time.
0 commit comments