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]
|
2016-02-16 07:01:31 +00:00
|
|
|
envlist = pep8,py27
|
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}
|
2015-11-03 14:16:36 +00:00
|
|
|
commands = ostestr {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
|
|
|
|
|
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]
|
2015-11-03 14:16:36 +00:00
|
|
|
basepython = python2.7
|
|
|
|
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
|
|
|
|
|
|
|
[testenv:venv]
|
|
|
|
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
|