@@ -57,15 +57,16 @@ class TestDtype(base.BaseDtypeTests):
5757
5858class TestGetitem (base .BaseGetitemTests ):
5959 def test_take_pandas_style_negative_raises (self , data , na_value ):
60- # This test was failing compliance checks because it attempted to match
61- # a pytest regex match using an empty string (""), which pytest version
62- # 8.4.0 stopped allowing.
63- # The test has been updated in pandas main so that it will
64- # no longer fail, but the fix is not expected to be released until
65- # at least pandas version 3.0 (current version is 2.3).
60+ # This test was failing compliance checks because it attempted to match
61+ # a pytest regex match using an empty string (""), which pytest version
62+ # 8.4.0 stopped allowing.
63+ # The test has been updated in pandas main so that it will
64+ # no longer fail, but the fix is not expected to be released until
65+ # at least pandas version 3.0 (current version is 2.3).
6666 with pytest .raises (ValueError ):
6767 data .take ([0 , - 2 ], fill_value = na_value , allow_fill = True )
6868
69+
6970class TestGroupby (base .BaseGroupbyTests ):
7071 pass
7172
@@ -117,6 +118,7 @@ def test_argmax_argmin_no_skipna_notimplemented(self, data_missing_for_sorting):
117118 with pytest .raises (NotImplementedError ):
118119 data .argmax (skipna = False )
119120
121+
120122class TestParsing (base .BaseParsingTests ):
121123 pass
122124
@@ -131,14 +133,14 @@ class TestReshaping(base.BaseReshapingTests):
131133
132134class TestSetitem (base .BaseSetitemTests ):
133135 def test_setitem_invalid (self , data , invalid_scalar ):
134- # This test was failing compliance checks because it attempted to match
135- # a pytest regex match using an empty string (""), which pytest version
136- # 8.4.0 stopped allowing.
137- # The test has been updated in pandas main so that it will
138- # no longer fail, but the fix is not expected to be released until
139- # at least pandas version 3.0 (current version is 2.3)
136+ # This test was failing compliance checks because it attempted to match
137+ # a pytest regex match using an empty string (""), which pytest version
138+ # 8.4.0 stopped allowing.
139+ # The test has been updated in pandas main so that it will
140+ # no longer fail, but the fix is not expected to be released until
141+ # at least pandas version 3.0 (current version is 2.3)
140142 with pytest .raises ((ValueError , TypeError )):
141143 data [0 ] = invalid_scalar
142144
143145 with pytest .raises ((ValueError , TypeError )):
144- data [:] = invalid_scalar
146+ data [:] = invalid_scalar
0 commit comments