@@ -142,6 +142,7 @@ def test_custom_asserts(self):
142
142
143
143
class TestConstructors (BaseJSON , base .BaseConstructorsTests ):
144
144
145
+ # TODO: Should this be pytest.mark.skip?
145
146
@pytest .mark .xfail (reason = "not implemented constructor from dtype" )
146
147
def test_from_dtype (self , data ):
147
148
# construct from our dtype & string dtype
@@ -157,10 +158,12 @@ class TestGetitem(BaseJSON, base.BaseGetitemTests):
157
158
158
159
159
160
class TestMissing (BaseJSON , base .BaseMissingTests ):
161
+ # TODO: Should this be pytest.mark.skip?
160
162
@pytest .mark .xfail (reason = "Setting a dict as a scalar" )
161
163
def test_fillna_series (self ):
162
164
"""We treat dictionaries as a mapping in fillna, not a scalar."""
163
165
166
+ # TODO: Should this be pytest.mark.skip?
164
167
@pytest .mark .xfail (reason = "Setting a dict as a scalar" )
165
168
def test_fillna_frame (self ):
166
169
"""We treat dictionaries as a mapping in fillna, not a scalar."""
@@ -212,7 +215,7 @@ def test_combine_add(self, data_repeated):
212
215
213
216
214
217
class TestCasting (BaseJSON , base .BaseCastingTests ):
215
-
218
+ # TODO: Should this be pytest.mark.skip?
216
219
@pytest .mark .xfail (reason = "failing on np.array(self, dtype=str)" )
217
220
def test_astype_str (self ):
218
221
"""This currently fails in NumPy on np.array(self, dtype=str) with
0 commit comments