b04c695b2c
Follow job rename in openstack-manuals, remove now unused checkbuild environment and simplify build-index.sh script since the same content is build everytime. Also remove www/www-index.html, we do not use it anymore. Depends-On: https://review.opendev.org/676956 Change-Id: I00b5afc14fc7872edc1c9db9a0aaa7949b1f1443
30 lines
555 B
INI
30 lines
555 B
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = publishdocs
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
basepython = python3
|
|
setenv =
|
|
VIRTUAL_ENV={envdir}
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
whitelist_externals =
|
|
bash
|
|
mkdir
|
|
mv
|
|
rsync
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:publishdocs]
|
|
# Prepare documents (without www) so that they can get published on
|
|
# developer.openstack.org with just copying publish-docs/api-ref over.
|
|
commands =
|
|
# Build website index
|
|
{toxinidir}/tools/build-index.sh
|
|
|
|
[testenv:docs]
|
|
commands =
|
|
{toxinidir}/tools/build-index.sh
|