aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tox.ini
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2021-10-21 15:10:00 +0200
committerDan Timoney <dtimoney@att.com>2021-10-21 17:53:09 +0000
commit1e75e1be8e6604528a3ec63fa9dc358ba0b8ba67 (patch)
tree5b07463a97fa28d53136e5ee468736c7e4a58fb0 /docs/tox.ini
parent5e25c5f31e4e47dfdc5810ed470450b194d81bba (diff)
Leverage upper-constraints files to pin all dependencies
It leverages the latest change from lfdocs-conf and the upper-constraints.txt now centralized in ONAP docs. In a long run, upperconstraints.os.txt should be removed once ONAP is synced with OpenStack. It removes tox and setuptools from requirements as nothing depends on them (most requirements should be removed except lfdocsconf) Issue-ID: DOC-765 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com> Change-Id: I63da3905aa77d561b28aedc8d9b69e535852206d (cherry picked from commit 22af228260d82a944350e2e5073cefb6562f59cc [formerly 6f7fa79eaed75440f53fc0b061a7d2a0cd1a1305]) Former-commit-id: ad40c3efa62346ec737c7afa4a5576c58670b7fa
Diffstat (limited to 'docs/tox.ini')
-rw-r--r--docs/tox.ini5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/tox.ini b/docs/tox.ini
index edac8c35..42ffa687 100644
--- a/docs/tox.ini
+++ b/docs/tox.ini
@@ -5,7 +5,10 @@ skipsdist = true
[testenv:docs]
basepython = python3
-deps = -r{toxinidir}/requirements-docs.txt
+deps =
+ -r{toxinidir}/requirements-docs.txt
+ -chttps://git.onap.org/doc/plain/etc/upper-constraints.os.txt
+ -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt
commands =
sphinx-build -b html -n -d {envtmpdir}/doctrees ./ {toxinidir}/_build/html
echo "Generated docs available in {toxinidir}/_build/html"