Skip to content

Commit c7a51ca

Browse files
committed
Test currently fails on openpyxl1 due to version incompatibilities
1 parent 836f39e commit c7a51ca

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pandas/tests/io/test_excel.py

+4
Original file line numberDiff line numberDiff line change
@@ -2393,6 +2393,10 @@ def custom_converter(css):
23932393
pytest.importorskip('jinja2')
23942394
pytest.importorskip(engine)
23952395

2396+
if engine == 'openpyxl' and openpyxl_compat.is_compat(major_ver=1):
2397+
pytest.xfail('openpyxl1 does not support some openpyxl2-compatible '
2398+
'style dicts')
2399+
23962400
# Prepare spreadsheets
23972401

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

0 commit comments

Comments
 (0)