Merge "fix tox python3 overrides"

This commit is contained in:
Zuul 2018-06-10 15:59:24 +00:00 committed by Gerrit Code Review
commit edc8949f87
1 changed files with 11 additions and 2 deletions

13
tox.ini
View File

@ -21,29 +21,33 @@ commands =
rm -Rf .testrepository/times.dbm rm -Rf .testrepository/times.dbm
[testenv:py27] [testenv:py27]
basepython = python2.7
commands = commands =
{[testenv]commands} {[testenv]commands}
stestr run {posargs} stestr run {posargs}
stestr slowest stestr slowest
[testenv:py27-postgresql] [testenv:py27-postgresql]
basepython = python2.7
commands = commands =
{[testenv]commands} {[testenv]commands}
{toxinidir}/tools/run_pifpaf.sh '{posargs}' {toxinidir}/tools/run_pifpaf.sh '{posargs}'
[testenv:py35] [testenv:py35]
basepython = python3
commands = commands =
{[testenv]commands} {[testenv]commands}
stestr run {posargs} stestr run {posargs}
stestr slowest stestr slowest
[testenv:py35-postgresql] [testenv:py35-postgresql]
basepython = python3
commands = commands =
{[testenv]commands} {[testenv]commands}
{toxinidir}/tools/run_pifpaf.sh '{posargs}' {toxinidir}/tools/run_pifpaf.sh '{posargs}'
[testenv:functional] [testenv:functional]
basepython=python3.5 basepython=python3
setenv = VIRTUAL_ENV={envdir} setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt -r{toxinidir}/test-requirements.txt
@ -53,7 +57,7 @@ commands =
py.test -svx {toxinidir}/deckhand/tests/common/test_gabbi.py -k '{posargs}' py.test -svx {toxinidir}/deckhand/tests/common/test_gabbi.py -k '{posargs}'
[testenv:functional-dev] [testenv:functional-dev]
basepython=python3.5 basepython=python3
# Minimalistic functional test job for running Deckhand functional tests # Minimalistic functional test job for running Deckhand functional tests
# via uwsgi. Uses pifpaf for DB instantiation. Useful for developers. # via uwsgi. Uses pifpaf for DB instantiation. Useful for developers.
# Requires PostgreSQL be installed on host. # Requires PostgreSQL be installed on host.
@ -65,6 +69,7 @@ commands =
pifpaf run postgresql -- {toxinidir}/tools/functional-tests.sh "{posargs}" pifpaf run postgresql -- {toxinidir}/tools/functional-tests.sh "{posargs}"
[testenv:cover] [testenv:cover]
basepython = python3
setenv = {[testenv]setenv} setenv = {[testenv]setenv}
PYTHON=coverage run --source deckhand --parallel-mode PYTHON=coverage run --source deckhand --parallel-mode
commands = commands =
@ -77,15 +82,19 @@ commands =
coverage report coverage report
[testenv:bandit] [testenv:bandit]
basepython = python3
commands = bandit -r deckhand -x deckhand/tests -n 5 commands = bandit -r deckhand -x deckhand/tests -n 5
[testenv:genconfig] [testenv:genconfig]
basepython = python3
commands = oslo-config-generator --config-file=etc/deckhand/config-generator.conf commands = oslo-config-generator --config-file=etc/deckhand/config-generator.conf
[testenv:genpolicy] [testenv:genpolicy]
basepython = python3
commands = oslopolicy-sample-generator --config-file=etc/deckhand/policy-generator.conf commands = oslopolicy-sample-generator --config-file=etc/deckhand/policy-generator.conf
[testenv:pep8] [testenv:pep8]
basepython = python3
deps = deps =
.[bandit] .[bandit]
{[testenv]deps} {[testenv]deps}