diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-11-09 00:51:13 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-11-09 00:51:13 +0900 |
commit | 8adb20cc420cf836e4b4715dc1dab99c27062df1 (patch) | |
tree | 2af325a381c6fe3c62572f9a996dfd40d86f8dc5 /tox.ini | |
parent | 63daf8c6e62e57ceaf818243592ecf3f28bc45db (diff) | |
download | sphinx-git-8adb20cc420cf836e4b4715dc1dab99c27062df1.tar.gz |
Give install_command to tox
Since tox-3.2.0, 'usedevelop' option and 'deps=.[test,websupport]'
option have been conflicted. As a workaround, this adds
'install_command' option to avoid the situation.
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -20,6 +20,8 @@ deps = du12: docutils==0.12 du13: docutils==0.13.1 du14: docutils==0.14 +# This entry should be also removed after moving 'extras' option +install_command = pip install {opts} {packages} 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,ignore::DeprecationWarning:distutils SPHINX_TEST_TEMPDIR = {envdir}/testbuild |