api-site/tox.ini
Andreas Jaeger 57ca6e1317 Remove api-quick-start
The document is now in openstack-manuals, we can remove it here
completely together with the jobs for building it.

Add a redirect to new location.

Depends-On: https://review.opendev.org/671115
Change-Id: Ife74ae2b83bdae1e206b0705faf6f623428a3f1f
2019-07-17 10:43:50 +02:00

49 lines
927 B
INI

[tox]
minversion = 1.6
envlist = linters,checkbuild
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:linters]
commands =
doc8 api-quick-start
[testenv:checkbuild]
basepython = python2
commands =
# Build website index
{toxinidir}/tools/build-index.sh build
[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 publish
[testenv:docs]
commands =
{toxinidir}/tools/build-index.sh publish
[doc8]
# Settings for doc8:
# Ignore target directories
ignore-path = common/
# File extensions to use
extensions = .rst,.txt
# Ignore lines longer than 79 chars
ignore = D001