@@ -131,8 +131,7 @@ def test_custom_asserts(self):
131131
132132class TestConstructors (BaseJSON , base .BaseConstructorsTests ):
133133
134- # TODO: Should this be pytest.mark.skip?
135- @pytest .mark .xfail (reason = "not implemented constructor from dtype" )
134+ @pytest .mark .skip (reason = "not implemented constructor from dtype" )
136135 def test_from_dtype (self , data ):
137136 # construct from our dtype & string dtype
138137 pass
@@ -147,13 +146,11 @@ class TestGetitem(BaseJSON, base.BaseGetitemTests):
147146
148147
149148class TestMissing (BaseJSON , base .BaseMissingTests ):
150- # TODO: Should this be pytest.mark.skip?
151- @pytest .mark .xfail (reason = "Setting a dict as a scalar" )
149+ @pytest .mark .skip (reason = "Setting a dict as a scalar" )
152150 def test_fillna_series (self ):
153151 """We treat dictionaries as a mapping in fillna, not a scalar."""
154152
155- # TODO: Should this be pytest.mark.skip?
156- @pytest .mark .xfail (reason = "Setting a dict as a scalar" )
153+ @pytest .mark .skip (reason = "Setting a dict as a scalar" )
157154 def test_fillna_frame (self ):
158155 """We treat dictionaries as a mapping in fillna, not a scalar."""
159156
@@ -204,8 +201,7 @@ def test_combine_add(self, data_repeated):
204201
205202
206203class TestCasting (BaseJSON , base .BaseCastingTests ):
207- # TODO: Should this be pytest.mark.skip?
208- @pytest .mark .xfail (reason = "failing on np.array(self, dtype=str)" )
204+ @pytest .mark .skip (reason = "failing on np.array(self, dtype=str)" )
209205 def test_astype_str (self ):
210206 """This currently fails in NumPy on np.array(self, dtype=str) with
211207
0 commit comments