2016-09-08 22:09:33 +00:00
|
|
|
# Classic charm: ./tox.ini
|
|
|
|
# This file is managed centrally by release-tools and should not be modified
|
|
|
|
# within individual charm repos.
|
2015-11-03 14:16:36 +00:00
|
|
|
[tox]
|
2019-01-30 12:14:23 +00:00
|
|
|
envlist = pep8,py3{5,6}
|
2015-11-03 14:16:36 +00:00
|
|
|
skipsdist = True
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
|
|
PYTHONHASHSEED=0
|
2016-09-08 22:09:33 +00:00
|
|
|
CHARM_DIR={envdir}
|
2018-02-21 07:34:13 -06:00
|
|
|
AMULET_SETUP_TIMEOUT=5400
|
2015-11-03 14:16:36 +00:00
|
|
|
install_command =
|
2018-04-02 20:31:11 +00:00
|
|
|
pip install {opts} {packages}
|
2019-03-07 17:10:53 -05:00
|
|
|
commands = stestr run {posargs}
|
2016-09-08 22:09:33 +00:00
|
|
|
whitelist_externals = juju
|
2017-03-07 11:10:22 -08:00
|
|
|
passenv = HOME TERM AMULET_* CS_API_*
|
2015-11-03 14:16:36 +00:00
|
|
|
|
|
|
|
[testenv:py27]
|
|
|
|
basepython = python2.7
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
2019-01-30 12:14:23 +00:00
|
|
|
commands = /bin/true
|
2015-11-03 14:16:36 +00:00
|
|
|
|
2017-04-27 11:13:10 -07:00
|
|
|
[testenv:py35]
|
|
|
|
basepython = python3.5
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
|
|
|
|
2018-07-12 17:51:47 +07:00
|
|
|
[testenv:py36]
|
|
|
|
basepython = python3.6
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
|
|
|
|
2016-02-16 07:01:31 +00:00
|
|
|
[testenv:pep8]
|
2018-09-26 18:37:52 -04:00
|
|
|
basepython = python3
|
2015-11-03 14:16:36 +00:00
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
2016-09-08 22:09:33 +00:00
|
|
|
commands = flake8 {posargs} hooks unit_tests tests actions lib
|
2016-03-23 08:52:02 +00:00
|
|
|
charm-proof
|
2015-11-03 14:16:36 +00:00
|
|
|
|
2019-03-01 11:02:20 +01:00
|
|
|
[testenv:cover]
|
|
|
|
# Technique based heavily upon
|
|
|
|
# https://github.com/openstack/nova/blob/master/tox.ini
|
|
|
|
basepython = python3
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
|
|
|
setenv =
|
|
|
|
{[testenv]setenv}
|
|
|
|
PYTHON=coverage run
|
|
|
|
commands =
|
|
|
|
coverage erase
|
2019-03-07 17:10:53 -05:00
|
|
|
stestr run {posargs}
|
2019-03-01 11:02:20 +01:00
|
|
|
coverage combine
|
|
|
|
coverage html -d cover
|
|
|
|
coverage xml -o cover/coverage.xml
|
|
|
|
coverage report
|
|
|
|
|
|
|
|
[coverage:run]
|
|
|
|
branch = True
|
|
|
|
concurrency = multiprocessing
|
|
|
|
parallel = True
|
|
|
|
source =
|
|
|
|
.
|
|
|
|
omit =
|
|
|
|
.tox/*
|
|
|
|
*/charmhelpers/*
|
2019-03-01 14:50:39 +01:00
|
|
|
unit_tests/*
|
2019-03-01 11:02:20 +01:00
|
|
|
|
2015-11-03 14:16:36 +00:00
|
|
|
[testenv:venv]
|
2018-09-26 18:37:52 -04:00
|
|
|
basepython = python3
|
2015-11-03 14:16:36 +00:00
|
|
|
commands = {posargs}
|
|
|
|
|
2016-07-19 03:49:32 +00:00
|
|
|
[testenv:func27-noop]
|
|
|
|
# DRY RUN - For Debug
|
|
|
|
basepython = python2.7
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
|
|
|
commands =
|
|
|
|
bundletester -vl DEBUG -r json -o func-results.json --test-pattern "gate-*" -n --no-destroy
|
|
|
|
|
|
|
|
[testenv:func27]
|
|
|
|
# Charm Functional Test
|
|
|
|
# Run all gate tests which are +x (expected to always pass)
|
|
|
|
basepython = python2.7
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
|
|
|
commands =
|
|
|
|
bundletester -vl DEBUG -r json -o func-results.json --test-pattern "gate-*" --no-destroy
|
|
|
|
|
|
|
|
[testenv:func27-smoke]
|
|
|
|
# Charm Functional Test
|
|
|
|
# Run a specific test as an Amulet smoke test (expected to always pass)
|
|
|
|
basepython = python2.7
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
|
|
|
commands =
|
2018-09-18 15:08:48 +02:00
|
|
|
bundletester -vl DEBUG -r json -o func-results.json gate-basic-bionic-rocky --no-destroy
|
2016-07-19 03:49:32 +00:00
|
|
|
|
|
|
|
[testenv:func27-dfs]
|
|
|
|
# Charm Functional Test
|
|
|
|
# Run all deploy-from-source tests which are +x (may not always pass!)
|
|
|
|
basepython = python2.7
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
|
|
|
commands =
|
|
|
|
bundletester -vl DEBUG -r json -o func-results.json --test-pattern "dfs-*" --no-destroy
|
|
|
|
|
|
|
|
[testenv:func27-dev]
|
|
|
|
# Charm Functional Test
|
|
|
|
# Run all development test targets which are +x (may not always pass!)
|
|
|
|
basepython = python2.7
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
|
|
|
commands =
|
|
|
|
bundletester -vl DEBUG -r json -o func-results.json --test-pattern "dev-*" --no-destroy
|
|
|
|
|
2015-11-03 14:16:36 +00:00
|
|
|
[flake8]
|
|
|
|
ignore = E402,E226
|
2016-09-08 22:09:33 +00:00
|
|
|
exclude = */charmhelpers
|