16
16
NaT ,
17
17
Series ,
18
18
Timestamp ,
19
- _is_numpy_dev ,
20
19
date_range ,
21
20
isna ,
22
21
)
@@ -698,11 +697,6 @@ def test_numpy_compat(func):
698
697
getattr (g , func )(foo = 1 )
699
698
700
699
701
- @pytest .mark .xfail (
702
- _is_numpy_dev ,
703
- reason = "https://github.com/pandas-dev/pandas/issues/31992" ,
704
- strict = False ,
705
- )
706
700
def test_cummin (numpy_dtypes_for_minmax ):
707
701
dtype = numpy_dtypes_for_minmax [0 ]
708
702
min_val = numpy_dtypes_for_minmax [1 ]
@@ -751,11 +745,6 @@ def test_cummin(numpy_dtypes_for_minmax):
751
745
tm .assert_series_equal (result , expected )
752
746
753
747
754
- @pytest .mark .xfail (
755
- _is_numpy_dev ,
756
- reason = "https://github.com/pandas-dev/pandas/issues/31992" ,
757
- strict = False ,
758
- )
759
748
def test_cummin_all_nan_column ():
760
749
base_df = pd .DataFrame ({"A" : [1 , 1 , 1 , 1 , 2 , 2 , 2 , 2 ], "B" : [np .nan ] * 8 })
761
750
@@ -766,11 +755,6 @@ def test_cummin_all_nan_column():
766
755
tm .assert_frame_equal (expected , result )
767
756
768
757
769
- @pytest .mark .xfail (
770
- _is_numpy_dev ,
771
- reason = "https://github.com/pandas-dev/pandas/issues/31992" ,
772
- strict = False ,
773
- )
774
758
def test_cummax (numpy_dtypes_for_minmax ):
775
759
dtype = numpy_dtypes_for_minmax [0 ]
776
760
max_val = numpy_dtypes_for_minmax [2 ]
@@ -819,11 +803,6 @@ def test_cummax(numpy_dtypes_for_minmax):
819
803
tm .assert_series_equal (result , expected )
820
804
821
805
822
- @pytest .mark .xfail (
823
- _is_numpy_dev ,
824
- reason = "https://github.com/pandas-dev/pandas/issues/31992" ,
825
- strict = False ,
826
- )
827
806
def test_cummax_all_nan_column ():
828
807
base_df = pd .DataFrame ({"A" : [1 , 1 , 1 , 1 , 2 , 2 , 2 , 2 ], "B" : [np .nan ] * 8 })
829
808
0 commit comments