summaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2022-12-09 10:27:43 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2022-12-09 10:54:09 +0100
commita4d75e379dabd296ce021bea4e7f5d9f31f1f559 (patch)
treeb6946f24ae006ec0645c21b7c4df8e74e52fc687 /tox.ini
parent49786579b6f81a6584eeede109e8aaadb83e8bbc (diff)
Fix tox.ini
It leverages upper constraints and an updated jjb. Change-Id: I890acf8bf36a447e2fcd137cd1cd9e54d7cf5937 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini25
1 files changed, 9 insertions, 16 deletions
diff --git a/tox.ini b/tox.ini
index cb6aa2698..b93d95ff5 100644
--- a/tox.ini
+++ b/tox.ini
@@ -4,31 +4,24 @@
# and then run "tox" from this directory.
[tox]
-envlist = jjb,docs,docs-linkcheck
+envlist = jjb,docs
skipsdist = True
[testenv]
+basepython = python3.10
usedevelop = False
-setenv=
- HOME = {envtmpdir}
- PYTHONPATH = {toxinidir}
+deps =
+ -chttps://opendev.org/openstack/requirements/raw/branch/stable/zed/upper-constraints.txt
+ -r{toxinidir}/test-requirements.txt
[testenv:jjb]
-basepython = python3
-deps =
- jenkins-job-builder==2.5.0
commands=
- jenkins-jobs test -o job_output -r {posargs:"jjb/"}
+ jenkins-jobs test -o {envtmpdir}/job_output -r {toxinidir}/jjb
[testenv:docs]
-basepython = python3
-deps = -r{toxinidir}/docs/requirements.txt
commands =
- sphinx-build -b html -n -d {envtmpdir}/doctrees ./docs {toxinidir}/docs/_build/html
- echo "Generated docs available in {toxinidir}/docs/_build/html"
-whitelist_externals = echo
+ sphinx-build -b html -n -d {envtmpdir}/doctrees ./docs {toxinidir}/docs/_build/html
[testenv:docs-linkcheck]
-basepython = python3
-deps = -r{toxinidir}/docs/requirements.txt
-commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs {toxinidir}/docs/_build/linkcheck
+commands =
+ sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs {toxinidir}/docs/_build/linkcheck