@@ -1596,7 +1596,7 @@ def test_path_path_lib(self, request, engine, ext):
1596
1596
request .node .add_marker (
1597
1597
pytest .mark .xfail (
1598
1598
openpyxl_installed_and_xlsx_xlsm (ext )
1599
- and not xlswriter_and_xlsx (path , request .getfixturevalue ("engine" )),
1599
+ and not xlswriter_and_xlsx (ext , request .getfixturevalue ("engine" )),
1600
1600
reason = "Fails on the min version build" ,
1601
1601
raises = TypeError ,
1602
1602
)
@@ -1612,7 +1612,7 @@ def test_path_local_path(self, request, engine, ext):
1612
1612
request .node .add_marker (
1613
1613
pytest .mark .xfail (
1614
1614
openpyxl_installed_and_xlsx_xlsm (ext )
1615
- and not xlswriter_and_xlsx (path , request .getfixturevalue ("engine" )),
1615
+ and not xlswriter_and_xlsx (ext , request .getfixturevalue ("engine" )),
1616
1616
reason = "Fails on the min version build" ,
1617
1617
raises = TypeError ,
1618
1618
)
@@ -1689,7 +1689,8 @@ def test_excel_duplicate_columns_with_names(self, request, path):
1689
1689
# GH#39695
1690
1690
request .node .add_marker (
1691
1691
pytest .mark .xfail (
1692
- openpyxl_installed_and_xlsx_xlsm (path ),
1692
+ openpyxl_installed_and_xlsx_xlsm (path )
1693
+ and not xlswriter_and_xlsx (path , request .getfixturevalue ("engine" )),
1693
1694
reason = "Fails on the min version build" ,
1694
1695
raises = TypeError ,
1695
1696
)
0 commit comments