Skip to content

Commit

Permalink
Test currently fails on openpyxl1 due to version incompatibilities
Browse files Browse the repository at this point in the history
  • Loading branch information
jnothman committed Apr 20, 2017
1 parent 836f39e commit c7a51ca
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pandas/tests/io/test_excel.py
Original file line number Diff line number Diff line change
Expand Up @@ -2393,6 +2393,10 @@ def custom_converter(css):
pytest.importorskip('jinja2')
pytest.importorskip(engine)

if engine == 'openpyxl' and openpyxl_compat.is_compat(major_ver=1):
pytest.xfail('openpyxl1 does not support some openpyxl2-compatible '
'style dicts')

# Prepare spreadsheets

df = DataFrame(np.random.randn(10, 3))
Expand Down

0 comments on commit c7a51ca

Please sign in to comment.