Skip to content

Commit ac8ac15

Browse files
authored
TST: xfail more in 3.5 conda build (#18879)
1 parent 775099c commit ac8ac15

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pandas/tests/io/test_common.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -144,15 +144,16 @@ def test_read_non_existant(self, reader, module, error_class, fn_ext):
144144
with pytest.raises(error_class):
145145
reader(path)
146146

147-
@pytest.mark.xfail(reason="not working in 3.5 conda build")
148147
@pytest.mark.parametrize('reader, module, path', [
149148
(pd.read_csv, 'os', os.path.join(HERE, 'data', 'iris.csv')),
150149
(pd.read_table, 'os', os.path.join(HERE, 'data', 'iris.csv')),
151150
(pd.read_fwf, 'os', os.path.join(HERE, 'data',
152151
'fixed_width_format.txt')),
153152
(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')),
156157
(pd.read_hdf, 'tables', os.path.join(HERE, 'data', 'legacy_hdf',
157158
'datetimetz_object.h5')),
158159
(pd.read_stata, 'os', os.path.join(HERE, 'data', 'stata10_115.dta')),

0 commit comments

Comments
 (0)