@@ -144,15 +144,16 @@ def test_read_non_existant(self, reader, module, error_class, fn_ext):
144
144
with pytest .raises (error_class ):
145
145
reader (path )
146
146
147
- @pytest .mark .xfail (reason = "not working in 3.5 conda build" )
148
147
@pytest .mark .parametrize ('reader, module, path' , [
149
148
(pd .read_csv , 'os' , os .path .join (HERE , 'data' , 'iris.csv' )),
150
149
(pd .read_table , 'os' , os .path .join (HERE , 'data' , 'iris.csv' )),
151
150
(pd .read_fwf , 'os' , os .path .join (HERE , 'data' ,
152
151
'fixed_width_format.txt' )),
153
152
(pd .read_excel , 'xlrd' , os .path .join (HERE , 'data' , 'test1.xlsx' )),
154
- (pd .read_feather , 'feather' , os .path .join (HERE , 'data' ,
155
- 'feather-0_3_1.feather' )),
153
+
154
+ # TODO(jreback) gh-18873
155
+ # (pd.read_feather, 'feather', os.path.join(HERE, 'data',
156
+ # 'feather-0_3_1.feather')),
156
157
(pd .read_hdf , 'tables' , os .path .join (HERE , 'data' , 'legacy_hdf' ,
157
158
'datetimetz_object.h5' )),
158
159
(pd .read_stata , 'os' , os .path .join (HERE , 'data' , 'stata10_115.dta' )),
0 commit comments