From a9cf4a9d409ede2fe36d6f761d36469e77c0d8a3 Mon Sep 17 00:00:00 2001 From: Marc Garcia Date: Tue, 3 Oct 2017 23:18:01 +0100 Subject: [PATCH] Adding skip to test failing because of lxml import (#17747) --- 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 6fc080c8d9090..effa5ef4184be 100644 --- a/pandas/tests/io/test_html.py +++ b/pandas/tests/io/test_html.py @@ -953,6 +953,7 @@ def test_importcheck_thread_safety(): # see gh-16928 # force import check by reinitalising global vars in html.py + pytest.importorskip('lxml') reload(pandas.io.html) filename = os.path.join(DATA_PATH, 'valid_markup.html')