Skip to content

Commit c3f50c1

Browse files
jbrockmendelproost
authored andcommitted
TST: suppress 1485 warnings issued by xml parser (pandas-dev#28514)
1 parent cd4a107 commit c3f50c1

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pandas/tests/io/excel/__init__.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import pytest
2+
3+
pytestmark = pytest.mark.filterwarnings(
4+
# Looks like tree.getiterator is deprecated in favor of tree.iter
5+
"ignore:This method will be removed in future versions:PendingDeprecationWarning"
6+
)

0 commit comments

Comments
 (0)