Skip to content

Commit 0c50978

Browse files
committed
One last test & non-strict xfail
1 parent e41689f commit 0c50978

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

pandas/tests/io/test_excel.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2183,7 +2183,8 @@ def test_write_cells_merge_styled(self, merge_cells, ext, engine):
21832183
assert xcell_b1.font == openpyxl_sty_merged
21842184
assert xcell_a2.font == openpyxl_sty_merged
21852185

2186-
@pytest.mark.xfail(PY35 and not PY36, reason='only fails on Linux?')
2186+
@pytest.mark.xfail(PY35 and not PY36, reason='only fails on Linux?',
2187+
strict=False)
21872188
@pytest.mark.parametrize("mode,expected", [
21882189
('w', ['baz']), ('a', ['foo', 'bar', 'baz'])])
21892190
def test_write_append_mode(self, merge_cells, ext, engine, mode, expected):

pandas/tests/io/test_sql.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1836,6 +1836,7 @@ def test_default_type_conversion(self):
18361836
# Bool column with NA = int column with NA values => becomes float
18371837
assert issubclass(df.BoolColWithNull.dtype.type, np.floating)
18381838

1839+
@pytest.mark.xfail(PY35 and not PY36, reason='?')
18391840
def test_read_procedure(self):
18401841
import pymysql
18411842
# see GH7324. Although it is more an api test, it is added to the

0 commit comments

Comments
 (0)