6b343a5226
Change-Id: I82b75841e4b89d3f9243080d2cfc70ffdac2ff0a Signed-off-by: Paul Belanger <pabelanger@redhat.com>
44 lines
823 B
INI
44 lines
823 B
INI
[tox]
|
|
minversion = 1.4.2
|
|
envlist = docs,linters
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
|
|
[testenv:docs]
|
|
deps = -r{toxinidir}/doc/requirements.txt
|
|
whitelist_externals =
|
|
bash
|
|
commands=
|
|
bash -c "rm -rf doc/build"
|
|
doc8 doc
|
|
sphinx-build -b html doc/source doc/build/html
|
|
|
|
[testenv:testinfra]
|
|
commands =
|
|
pytest --junit-xml junit.xml --sudo --verbose molecule/tests
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[flake8]
|
|
# E123, E125 skipped as they are invalid PEP-8.
|
|
|
|
show-source = True
|
|
ignore = E123,E125
|
|
builtins = _
|
|
exclude=.venv,.git,.tox,dist,doc,*egg,build
|
|
|
|
[testenv:linters]
|
|
commands =
|
|
yamllint -s .
|
|
|
|
[testenv:molecule]
|
|
sitepackages = True
|
|
setenv =
|
|
ANSIBLE_CALLBACK_PLUGINS = {envsitepackagesdir}/ara/plugins/callbacks
|
|
commands =
|
|
molecule test
|