diff options
author | Stephen Finucane <stephen@that.guru> | 2018-01-14 22:02:53 +0000 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2018-01-15 09:09:53 +0000 |
commit | 4420b43e5a0b5d372c69b2927ec2ceadc1ad1093 (patch) | |
tree | d4a9c523121adee10d1c972d553b72e5495bd76c /tox.ini | |
parent | 3b01697e11445ddfeda891aa53d410259fab6163 (diff) | |
download | sphinx-git-4420b43e5a0b5d372c69b2927ec2ceadc1ad1093.tar.gz |
tox: Ignore distutils deprecation warning
distutils/__init__.py:4: DeprecationWarning: the imp module is
deprecated in favour of importlib; see the module's documentation
for alternative uses
import imp
Signed-off-by: Stephen Finucane <stephen@that.guru>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ deps = du13: docutils==0.13.1 du14: docutils==0.14 setenv = - PYTHONWARNINGS = all,ignore::ImportWarning:pkgutil,ignore::ImportWarning:importlib._bootstrap,ignore::ImportWarning:importlib._bootstrap_external,ignore::ImportWarning:pytest_cov.plugin,ignore::DeprecationWarning:site,ignore::DeprecationWarning:_pytest.assertion.rewrite,ignore::DeprecationWarning:_pytest.fixtures + PYTHONWARNINGS = all,ignore::ImportWarning:pkgutil,ignore::ImportWarning:importlib._bootstrap,ignore::ImportWarning:importlib._bootstrap_external,ignore::ImportWarning:pytest_cov.plugin,ignore::DeprecationWarning:site,ignore::DeprecationWarning:_pytest.assertion.rewrite,ignore::DeprecationWarning:_pytest.fixtures,ignore::DeprecationWarning:distutils SPHINX_TEST_TEMPDIR = {envdir}/testbuild commands= pytest -Wall --durations 25 {posargs} |