diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-12-29 19:39:41 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-29 19:39:41 +0900 |
commit | 3f560cd67239f75840cc7a439ab54d8509c855f6 (patch) | |
tree | a93e71ff4ddc321b43a83e5b9c6205c4b88e2f3a | |
parent | aaee3520f393babd87a34edda48793ed29804365 (diff) | |
parent | f054b9b9768888cd206b06bae6bc20cc08baab09 (diff) | |
download | sphinx-git-3f560cd67239f75840cc7a439ab54d8509c855f6.tar.gz |
Merge pull request #8612 from tk0miya/reduce_Warning
refactor: Reduce warnings on testing
-rw-r--r-- | setup.cfg | 1 | ||||
-rw-r--r-- | tox.ini | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -60,6 +60,7 @@ filterwarnings = all ignore::DeprecationWarning:docutils.io ignore::DeprecationWarning:pyximport.pyximport + ignore::ImportWarning:importlib._bootstrap ignore::PendingDeprecationWarning:sphinx.util.pycompat markers = apidoc @@ -25,7 +25,7 @@ deps = extras = test setenv = - PYTHONWARNINGS = all,ignore::ImportWarning:importlib._bootstrap_external,ignore::DeprecationWarning:site,ignore::DeprecationWarning:distutils + PYTHONWARNINGS = all,ignore::ImportWarning:importlib._bootstrap_external,ignore::DeprecationWarning:site,ignore::DeprecationWarning:distutils,ignore::DeprecationWarning:pip._vendor.packaging.version PYTEST_ADDOPTS = {env:PYTEST_ADDOPTS:} --color yes commands= python -X dev -m pytest --durations 25 {posargs} |