From 66031d85c5ec66f60c9d0786534d0ba0a7a2aff8 Mon Sep 17 00:00:00 2001 From: jbrockmendel Date: Wed, 18 Sep 2019 16:46:02 -0700 Subject: [PATCH] TST: suppress 1485 warnings issued by xml parser --- pandas/tests/io/excel/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandas/tests/io/excel/__init__.py b/pandas/tests/io/excel/__init__.py index e69de29bb2d1d..550172329fc57 100644 --- a/pandas/tests/io/excel/__init__.py +++ b/pandas/tests/io/excel/__init__.py @@ -0,0 +1,6 @@ +import pytest + +pytestmark = pytest.mark.filterwarnings( + # Looks like tree.getiterator is deprecated in favor of tree.iter + "ignore:This method will be removed in future versions:PendingDeprecationWarning" +)