summaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2017-12-22 18:50:53 +0000
committerStephen Finucane <stephen@that.guru>2017-12-29 13:02:32 +0000
commit9a3ebaaff5a24ed9f9ae9481acc0dbfd46281096 (patch)
treedbf06f609c772470366a07d6da8af1de5a133508 /tests/conftest.py
parent7c0723fd46825ea44a98ae22ac45d08ca0ddd88b (diff)
downloadsphinx-git-9a3ebaaff5a24ed9f9ae9481acc0dbfd46281096.tar.gz
Resolve warning filter issues
There's an issue with 'pkgutils' and namespace packages. This has been reported against setuptools [1], but until this is resolved, we simply need to live with it. Ensure said warnings are filtered from tox too and remove some unnecessary ones. [1] https://github.com/pypa/setuptools/issues/1111 Signed-off-by: Stephen Finucane <stephen@that.guru>
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 336484bcc..0d6b39681 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -40,9 +40,7 @@ def _filter_warnings():
ignore(category=DeprecationWarning, module='site') # virtualenv
ignore(category=PendingDeprecationWarning, module=r'_pytest\..*')
- ignore(category=ImportWarning, module='backports')
ignore(category=ImportWarning, module='pkgutil')
- ignore(category=ImportWarning, module='pytest_cov')
def _initialize_test_directory(session):