summaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-12-23 13:07:11 -0500
committerNed Batchelder <ned@nedbatchelder.com>2018-12-23 13:07:11 -0500
commitce9194abe4c369c455cca9f1d88c25b70db031e6 (patch)
tree3079d50a926113a6753c73ce26eddba0cb9b1b8f /tests/conftest.py
parenta5e8362aa4d30767f07cb7bbf7b82269cf484f40 (diff)
downloadpython-coveragepy-git-ce9194abe4c369c455cca9f1d88c25b70db031e6.tar.gz
Suppress another warning
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py1
1 files changed, 1 insertions, 0 deletions
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,