From bc7acf9c93a0e426596ecbb7d95204455214ef5d Mon Sep 17 00:00:00 2001 From: Fangchen Li Date: Fri, 18 Sep 2020 23:14:59 -0500 Subject: [PATCH] CI: xfail html test #36467 --- pandas/tests/io/test_html.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pandas/tests/io/test_html.py b/pandas/tests/io/test_html.py index 59034e9f3d807..4632fcbab817a 100644 --- a/pandas/tests/io/test_html.py +++ b/pandas/tests/io/test_html.py @@ -121,6 +121,7 @@ def test_to_html_compat(self): res = self.read_html(out, attrs={"class": "dataframe"}, index_col=0)[0] tm.assert_frame_equal(res, df) + @pytest.mark.xfail(reason="ResourceWarning from html5lib #36467", strict=False) @tm.network def test_banklist_url_positional_match(self): url = "http://www.fdic.gov/bank/individual/failed/banklist.html"