80fe68beb8
This is the first in a series of patches that will implement healthchecks for containerized services, conforming to the Docker HEALTHCHECK api and to the container-healthchecks blueprint. This commit includes an example healtcheck (for heat-api), and modifies the pep8 check to error out on duplicate jinja blocks in container-images/tripleo_kolla_template_overrides.j2, since we will be adding or modifying the _footer block for each service. Change-Id: Id9fc19dd386e395317093d1723b836ae2807fdf0 Implements: blueprint container-healthchecks Co-authored-by: Dan Prince <dprince@redhat.com> Co-authored-by: Ian Main <imain@redhat.com>
43 lines
1.1 KiB
INI
43 lines
1.1 KiB
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = py35,py34,py27,pypy,pep8
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = {toxinidir}/tools/tox_install.sh {env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
|
|
setenv =
|
|
VIRTUAL_ENV={envdir}
|
|
CLIENT_NAME=tripleo-common
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = python setup.py test --slowest --testr-args='{posargs}'
|
|
whitelist_externals = bash
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
bash -c tools/check_duplicate_jinja_blocks.sh
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:cover]
|
|
commands = python setup.py test --coverage --coverage-package-name=tripleo_common --testr-args='{posargs}'
|
|
|
|
[testenv:docs]
|
|
commands = python setup.py build_sphinx
|
|
|
|
[testenv:debug]
|
|
commands = oslo_debug_helper {posargs}
|
|
|
|
[flake8]
|
|
# E123, E125 skipped as they are invalid PEP-8.
|
|
|
|
show-source = True
|
|
ignore = E123,E125
|
|
builtins = _
|
|
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,releasenotes
|
|
|
|
[testenv:releasenotes]
|
|
commands = bash -c tools/releasenotes_tox.sh
|