From ce9194abe4c369c455cca9f1d88c25b70db031e6 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 23 Dec 2018 13:07:11 -0500 Subject: Suppress another warning --- tests/conftest.py | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/conftest.py') diff --git a/tests/conftest.py b/tests/conftest.py index 2c30a2d7..c883ef7b 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -26,6 +26,7 @@ def set_warnings(): # setuptools/py33compat.py:54: DeprecationWarning: The value of convert_charrefs will become # True in 3.5. You are encouraged to set the value explicitly. # unescape = getattr(html, 'unescape', html_parser.HTMLParser().unescape) + # How come this warning is successfully suppressed here, but not in setup.cfg?? warnings.filterwarnings( "ignore", category=DeprecationWarning, -- cgit v1.2.1