@@ -72,7 +72,7 @@ class TestDtype(base.BaseDtypeTests):
7272
7373
7474class 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" )
7676 def test_memory_usage (self , data ):
7777 # Is this deliberate?
7878 super (TestInterface , self ).test_memory_usage (data )
@@ -87,9 +87,9 @@ class TestReshaping(base.BaseReshapingTests):
8787
8888
8989class TestGetitem (base .BaseGetitemTests ):
90- skip_take = pytest .mark .skip (reason = "GH-20664." , strict = True )
90+ skip_take = pytest .mark .skip (reason = "GH-20664." )
9191
92- @pytest .mark .skip (reason = "Backwards compatibility" , strict = True )
92+ @pytest .mark .skip (reason = "Backwards compatibility" )
9393 def test_getitem_scalar (self , data ):
9494 # CategoricalDtype.type isn't "correct" since it should
9595 # 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):
117117 def test_take_out_of_bounds_raises (self , data , allow_fill ):
118118 return super ().test_take_out_of_bounds_raises (data , allow_fill )
119119
120- @pytest .mark .skip (reason = "GH-20747. Unobserved categories." , strict = True )
120+ @pytest .mark .skip (reason = "GH-20747. Unobserved categories." )
121121 def test_take_series (self , data ):
122122 super ().test_take_series (data )
123123
124124 @skip_take
125125 def test_reindex_non_na_fill_value (self , data_missing ):
126126 super ().test_reindex_non_na_fill_value (data_missing )
127127
128- @pytest .mark .skip (reason = "Categorical.take buggy" , strict = True )
128+ @pytest .mark .skip (reason = "Categorical.take buggy" )
129129 def test_take_empty (self , data , na_value , na_cmp ):
130130 super ().test_take_empty (data , na_value , na_cmp )
131131
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" )
134133 def test_reindex (self , data , na_value ):
135134 super ().test_reindex (data , na_value )
136135
@@ -141,11 +140,11 @@ class TestSetitem(base.BaseSetitemTests):
141140
142141class TestMissing (base .BaseMissingTests ):
143142
144- @pytest .mark .skip (reason = "Not implemented" , strict = True )
143+ @pytest .mark .skip (reason = "Not implemented" )
145144 def test_fillna_limit_pad (self , data_missing ):
146145 super ().test_fillna_limit_pad (data_missing )
147146
148- @pytest .mark .skip (reason = "Not implemented" , strict = True )
147+ @pytest .mark .skip (reason = "Not implemented" )
149148 def test_fillna_limit_backfill (self , data_missing ):
150149 super ().test_fillna_limit_backfill (data_missing )
151150
@@ -155,7 +154,7 @@ class TestReduce(base.BaseNoReduceTests):
155154
156155
157156class TestMethods (base .BaseMethodsTests ):
158- @pytest .mark .skip (reason = "Unobserved categories included" , strict = True )
157+ @pytest .mark .skip (reason = "Unobserved categories included" )
159158 def test_value_counts (self , all_data , dropna ):
160159 return super ().test_value_counts (all_data , dropna )
161160
@@ -175,7 +174,7 @@ def test_combine_add(self, data_repeated):
175174 expected = pd .Series ([a + val for a in list (orig_data1 )])
176175 self .assert_series_equal (result , expected )
177176
178- @pytest .mark .skip (reason = "Not Applicable" , strict = True )
177+ @pytest .mark .skip (reason = "Not Applicable" )
179178 def test_fillna_length_mismatch (self , data_missing ):
180179 super ().test_fillna_length_mismatch (data_missing )
181180
0 commit comments