From 2baf5bbc62e15c280a05112c56cc9c2b5d019efc Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Wed, 8 Apr 2020 07:42:53 -0500 Subject: Enforce constraints for docs dependencies Tox targets for docs jobs were missing the upper constraints enforcement. This adds constrained dependency installation for these targets. Change-Id: I187cfced08ec8dde561b947e797807dbbf723fe6 Signed-off-by: Sean McGinnis --- tox.ini | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index 749937c..8c05b46 100644 --- a/tox.ini +++ b/tox.ini @@ -16,11 +16,15 @@ passenv = OS_TEST_* commands = stestr run --slowest {posargs} [testenv:docs] -deps = -r{toxinidir}/doc/requirements.txt +deps = + -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} + -r{toxinidir}/doc/requirements.txt commands = sphinx-build -W -b html doc/source doc/build/html [testenv:releasenotes] -deps = -r{toxinidir}/doc/requirements.txt +deps = + -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt} + -r{toxinidir}/doc/requirements.txt commands = sphinx-build -a -E -W -d releasenotes/build/.doctrees -b html releasenotes/source releasenotes/build/html [testenv:pep8] -- cgit v1.2.1