tox: Use upper-constraints for docs jobs

Note(elod.illes): upper constraint file link modified to point to Stein
version of the file.

Change-Id: I43225fc4ed3ba471ba7097f1e317bc6ffa777a46
(cherry picked from commit 8433aba4d6)
(cherry picked from commit c3c5aac8ff)
This commit is contained in:
caoyuan
2019-12-22 23:50:45 +08:00
committed by Elod Illes
parent 272786fd7e
commit 127da50788

11
tox.ini
View File

@@ -27,10 +27,12 @@ commands = {posargs}
[testenv:docs]
basepython = python3
whitelist_externals = rm
deps = -r{toxinidir}/doc/requirements.txt
deps =
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/stein}
-r{toxinidir}/doc/requirements.txt
commands =
rm -fr doc/build
sphinx-build -W -b html doc/source doc/build/html
rm -fr doc/build
sphinx-build -W -b html doc/source doc/build/html
[testenv:cover]
basepython = python3
@@ -48,7 +50,8 @@ exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,__init__.py
[testenv:releasenotes]
basepython = python3
deps = -r{toxinidir}/doc/requirements.txt
deps =
{[testenv:docs]deps}
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[testenv:lower-constraints]