2016-09-06 22:08:54 +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-02 09:28:57 +00:00
|
|
|
[tox]
|
2017-11-04 22:04:50 +00:00
|
|
|
envlist = pep8,py27,py35
|
2015-11-02 09:28:57 +00:00
|
|
|
skipsdist = True
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
|
|
PYTHONHASHSEED=0
|
2016-09-09 19:42:41 +00:00
|
|
|
CHARM_DIR={envdir}
|
2018-02-21 13:35:41 +00:00
|
|
|
AMULET_SETUP_TIMEOUT=5400
|
2015-11-02 09:28:57 +00:00
|
|
|
install_command =
|
2018-04-02 20:32:30 +00:00
|
|
|
pip install {opts} {packages}
|
2015-11-02 09:28:57 +00:00
|
|
|
commands = ostestr {posargs}
|
2016-09-06 22:08:54 +00:00
|
|
|
whitelist_externals = juju
|
2017-04-27 18:23:00 +00:00
|
|
|
passenv = HOME TERM AMULET_* CS_API_*
|
2015-11-02 09:28:57 +00:00
|
|
|
|
|
|
|
[testenv:py27]
|
|
|
|
basepython = python2.7
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
2017-11-04 22:04:50 +00:00
|
|
|
commands = /bin/true
|
2015-11-02 09:28:57 +00:00
|
|
|
|
2017-04-27 18:23:00 +00:00
|
|
|
[testenv:py35]
|
|
|
|
basepython = python3.5
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
|
|
|
|
2018-05-09 14:08:35 +00:00
|
|
|
[testenv:py36]
|
|
|
|
basepython = python3.6
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
|
|
|
|
2016-02-16 07:04:15 +00:00
|
|
|
[testenv:pep8]
|
2015-11-02 09:28:57 +00:00
|
|
|
basepython = python2.7
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
2016-09-09 19:42:41 +00:00
|
|
|
commands = flake8 {posargs} hooks unit_tests tests actions lib
|
2016-03-23 08:52:09 +00:00
|
|
|
charm-proof
|
2015-11-02 09:28:57 +00:00
|
|
|
|
|
|
|
[testenv:venv]
|
|
|
|
commands = {posargs}
|
|
|
|
|
2016-07-18 13:45:05 +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-05-08 19:00:17 +00:00
|
|
|
bundletester -vl DEBUG -r json -o func-results.json gate-basic-bionic-queens --no-destroy
|
2016-07-18 13:45:05 +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-02 09:28:57 +00:00
|
|
|
[flake8]
|
|
|
|
ignore = E402,E226
|
2016-09-06 22:08:54 +00:00
|
|
|
exclude = */charmhelpers
|