In tox.ini the section [testenv:doc] overwrites the lists of dependencies and command execution so that the common section [testenv] will be ignored completely. A quick solution is to introduce two different sections, one for py.test and one sphinx-build.
In the future the tox.ini content have to be recreated from ground up to support different Python and Sphinx versions.
In
tox.ini
the section[testenv:doc]
overwrites the lists of dependencies and command execution so that the common section[testenv]
will be ignored completely. A quick solution is to introduce two different sections, one forpy.test
and onesphinx-build
.In the future the
tox.ini
content have to be recreated from ground up to support different Python and Sphinx versions.