c90cf794da
Per Stein community goal [0], update the doc build to use python 3 by default. [0] https://governance.openstack.org/tc/goals/stein/python3-first.html Change-Id: I3992632a0768b4da0dedf2450e532d2724fc2e05 Signed-off-by: Tin Lam <tin@irrational.io>
23 lines
509 B
INI
23 lines
509 B
INI
[tox]
|
|
minversion = 2.0
|
|
envlist = docs
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
install_command = pip install -U {opts} {packages}
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
deps = -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt}
|
|
passenv = *_proxy *_PROXY
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:docs]
|
|
basepython = python3
|
|
deps = -r{toxinidir}/doc/requirements.txt
|
|
commands =
|
|
bash -c "rm -rf doc/build"
|
|
python setup.py build_sphinx
|
|
whitelist_externals =
|
|
bash
|