a0ec636cfe
This repo is now testing only with Python 3, so let's make a few cleanups: - Update requirements, no need for python_version anymore - Cleanup doc/source/conf.py to remove now obsolete content. - Use newer openstackdocstheme version - Remove install_command from tox.ini, the default is fine Change-Id: I7582abcbf237320b0707732270388f113d93349d
20 lines
371 B
INI
20 lines
371 B
INI
[tox]
|
|
envlist = docs,linters
|
|
minversion = 1.6
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
basepython = python3
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:docs]
|
|
commands = sphinx-build -W -b html -d doc/build/doctrees doc/source doc/build/html
|
|
|
|
[testenv:linters]
|
|
commands = yamllint sigs.yaml
|