@@ -72,7 +72,7 @@ class TestDtype(base.BaseDtypeTests):
72
72
73
73
74
74
class TestInterface (base .BaseInterfaceTests ):
75
- @pytest .mark .skip (reason = "Memory usage doesn't match" , strict = True )
75
+ @pytest .mark .skip (reason = "Memory usage doesn't match" )
76
76
def test_memory_usage (self , data ):
77
77
# Is this deliberate?
78
78
super (TestInterface , self ).test_memory_usage (data )
@@ -87,9 +87,9 @@ class TestReshaping(base.BaseReshapingTests):
87
87
88
88
89
89
class TestGetitem (base .BaseGetitemTests ):
90
- skip_take = pytest .mark .skip (reason = "GH-20664." , strict = True )
90
+ skip_take = pytest .mark .skip (reason = "GH-20664." )
91
91
92
- @pytest .mark .skip (reason = "Backwards compatibility" , strict = True )
92
+ @pytest .mark .skip (reason = "Backwards compatibility" )
93
93
def test_getitem_scalar (self , data ):
94
94
# CategoricalDtype.type isn't "correct" since it should
95
95
# be a parent of the elements (object). But don't want
@@ -117,20 +117,19 @@ def test_take_non_na_fill_value(self, data_missing):
117
117
def test_take_out_of_bounds_raises (self , data , allow_fill ):
118
118
return super ().test_take_out_of_bounds_raises (data , allow_fill )
119
119
120
- @pytest .mark .skip (reason = "GH-20747. Unobserved categories." , strict = True )
120
+ @pytest .mark .skip (reason = "GH-20747. Unobserved categories." )
121
121
def test_take_series (self , data ):
122
122
super ().test_take_series (data )
123
123
124
124
@skip_take
125
125
def test_reindex_non_na_fill_value (self , data_missing ):
126
126
super ().test_reindex_non_na_fill_value (data_missing )
127
127
128
- @pytest .mark .skip (reason = "Categorical.take buggy" , strict = True )
128
+ @pytest .mark .skip (reason = "Categorical.take buggy" )
129
129
def test_take_empty (self , data , na_value , na_cmp ):
130
130
super ().test_take_empty (data , na_value , na_cmp )
131
131
132
- @pytest .mark .skip (reason = "test not written correctly for categorical" ,
133
- strict = True )
132
+ @pytest .mark .skip (reason = "test not written correctly for categorical" )
134
133
def test_reindex (self , data , na_value ):
135
134
super ().test_reindex (data , na_value )
136
135
@@ -141,11 +140,11 @@ class TestSetitem(base.BaseSetitemTests):
141
140
142
141
class TestMissing (base .BaseMissingTests ):
143
142
144
- @pytest .mark .skip (reason = "Not implemented" , strict = True )
143
+ @pytest .mark .skip (reason = "Not implemented" )
145
144
def test_fillna_limit_pad (self , data_missing ):
146
145
super ().test_fillna_limit_pad (data_missing )
147
146
148
- @pytest .mark .skip (reason = "Not implemented" , strict = True )
147
+ @pytest .mark .skip (reason = "Not implemented" )
149
148
def test_fillna_limit_backfill (self , data_missing ):
150
149
super ().test_fillna_limit_backfill (data_missing )
151
150
@@ -155,7 +154,7 @@ class TestReduce(base.BaseNoReduceTests):
155
154
156
155
157
156
class TestMethods (base .BaseMethodsTests ):
158
- @pytest .mark .skip (reason = "Unobserved categories included" , strict = True )
157
+ @pytest .mark .skip (reason = "Unobserved categories included" )
159
158
def test_value_counts (self , all_data , dropna ):
160
159
return super ().test_value_counts (all_data , dropna )
161
160
@@ -175,7 +174,7 @@ def test_combine_add(self, data_repeated):
175
174
expected = pd .Series ([a + val for a in list (orig_data1 )])
176
175
self .assert_series_equal (result , expected )
177
176
178
- @pytest .mark .skip (reason = "Not Applicable" , strict = True )
177
+ @pytest .mark .skip (reason = "Not Applicable" )
179
178
def test_fillna_length_mismatch (self , data_missing ):
180
179
super ().test_fillna_length_mismatch (data_missing )
181
180
0 commit comments