diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-07-18 07:56:31 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-07-18 10:51:31 -0400 |
commit | 5d8d6b4d577dfb8b67cdf80e736f7778e338e5b6 (patch) | |
tree | d9dc7736553495be63aea4f54a64b13f391c411a /tests/conftest.py | |
parent | 001d85cc7de2c3cabe16d3936fa2bbb4868c69d5 (diff) | |
download | python-coveragepy-git-5d8d6b4d577dfb8b67cdf80e736f7778e338e5b6.tar.gz |
build: update pylint and remove some unneeded warning suppression
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 4ae11542..81c13dd7 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -34,21 +34,6 @@ def set_warnings(): # Warnings to suppress: # How come these warnings are successfully suppressed here, but not in setup.cfg?? - # 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) - warnings.filterwarnings( - "ignore", - category=DeprecationWarning, - message=r"The value of convert_charrefs will become True in 3.5.", - ) - - warnings.filterwarnings( - "ignore", - category=DeprecationWarning, - message=r".* instead of inspect.getfullargspec", - ) - # <frozen importlib._bootstrap>:681: # ImportWarning: VendorImporter.exec_module() not found; falling back to load_module() warnings.filterwarnings( |