tripleo-quickstart-extras/tox.ini

45 lines
1.1 KiB
INI

[tox]
minversion = 1.6
envlist = linters
skipdist = True
[testenv]
usedevelop = True
install_command = pip install -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/test-requirements.txt
[testenv:bindep]
# Do not install any requirements. We want this to be fast and work even if
# system dependencies are missing, since it's used to tell you what system
# dependencies are missing! This also means that bindep must be installed
# separately, outside of the requirements files.
deps = bindep
commands = bindep test
[testenv:docs]
commands = python setup.py build_sphinx
[testenv:linters]
basepython=python2
whitelist_externals = bash
commands =
flake8
bash ci-scripts/ansible-lint.sh
[testenv:releasenotes]
whitelist_externals = bash
commands = bash -c ci-scripts/releasenotes_tox.sh
[testenv:venv]
commands = {posargs}
[flake8]
# E123, E125 skipped as they are invalid PEP-8.
show-source = True
ignore = E123,E125
builtins = _
# TODO(adarazs): reenable flake8 checks on roles after fixing them up
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,roles