026e801475
Set the vault app version in juju status using the version returned from the Vault health data (rather than the installed snap). This review also puts in place the atexit handling needed for general status assessment. Change-Id: I1f8f0991534f4e130e924ffac733fa13141f0970
61 lines
1.5 KiB
INI
61 lines
1.5 KiB
INI
# Source charm: ./tox.ini
|
|
# This file is managed centrally by release-tools and should not be modified
|
|
# within individual charm repos.
|
|
[tox]
|
|
skipsdist = True
|
|
envlist = pep8,py34,py35,py36
|
|
skip_missing_interpreters = True
|
|
|
|
[testenv]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
PYTHONHASHSEED=0
|
|
TERM=linux
|
|
LAYER_PATH={toxinidir}/layers
|
|
INTERFACE_PATH={toxinidir}/interfaces
|
|
JUJU_REPOSITORY={toxinidir}/build
|
|
passenv = http_proxy https_proxy USER
|
|
install_command =
|
|
pip install {opts} {packages}
|
|
deps =
|
|
-r{toxinidir}/requirements.txt
|
|
|
|
[testenv:build]
|
|
basepython = python2.7
|
|
commands =
|
|
charm-build --log-level DEBUG -o {toxinidir}/build src {posargs}
|
|
|
|
[testenv:py27]
|
|
basepython = python2.7
|
|
# Reactive source charms are Python3-only, but a py27 unit test target
|
|
# is required by OpenStack Governance. Remove this shim as soon as
|
|
# permitted. http://governance.openstack.org/reference/cti/python_cti.html
|
|
whitelist_externals = true
|
|
commands = true
|
|
|
|
[testenv:py34]
|
|
basepython = python3.4
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
commands = ostestr {posargs}
|
|
|
|
[testenv:py35]
|
|
basepython = python3.5
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
commands = ostestr {posargs}
|
|
|
|
[testenv:py36]
|
|
basepython = python3.6
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
commands = ostestr {posargs}
|
|
|
|
[testenv:pep8]
|
|
basepython = python3
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
commands = flake8 {posargs} src unit_tests
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[flake8]
|
|
# E402 ignore necessary for path append before sys module import in actions
|
|
ignore = E402
|