|
|
@ -1,9 +1,10 @@ |
|
|
|
[tox] |
|
|
|
minversion = 2.0 |
|
|
|
envlist = py3,py27,pep8,pypy |
|
|
|
envlist = py3,pep8,pypy |
|
|
|
skipsdist = True |
|
|
|
|
|
|
|
[testenv] |
|
|
|
basepython = python3 |
|
|
|
setenv = VIRTUAL_ENV={envdir} |
|
|
|
PYTHONDONTWRITEBYTECODE = 1 |
|
|
|
LANGUAGE=en_US |
|
|
@ -19,7 +20,6 @@ commands = |
|
|
|
stestr run {posargs} |
|
|
|
|
|
|
|
[testenv:releasenotes] |
|
|
|
basepython = python3 |
|
|
|
deps = |
|
|
|
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} |
|
|
|
-r{toxinidir}/requirements.txt |
|
|
@ -27,13 +27,11 @@ deps = |
|
|
|
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html |
|
|
|
|
|
|
|
[testenv:pep8] |
|
|
|
basepython = python3 |
|
|
|
commands = |
|
|
|
flake8 {posargs} |
|
|
|
doc8 doc/source CONTRIBUTING.rst README.rst |
|
|
|
|
|
|
|
[testenv:cover] |
|
|
|
basepython = python3 |
|
|
|
setenv = {[testenv]setenv} |
|
|
|
PYTHON=coverage run --source ironicclient --omit='*tests*' --parallel-mode |
|
|
|
commands = |
|
|
@ -44,7 +42,6 @@ commands = |
|
|
|
coverage html -d ./cover --omit='*tests*' |
|
|
|
|
|
|
|
[testenv:venv] |
|
|
|
basepython = python3 |
|
|
|
deps = |
|
|
|
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} |
|
|
|
-r{toxinidir}/test-requirements.txt |
|
|
@ -52,21 +49,13 @@ deps = |
|
|
|
-r{toxinidir}/doc/requirements.txt |
|
|
|
commands = {posargs} |
|
|
|
|
|
|
|
[testenv:functional] |
|
|
|
passenv = * |
|
|
|
setenv = TESTS_DIR=./ironicclient/tests/functional |
|
|
|
LANGUAGE=en_US |
|
|
|
OS_TESTENV_NAME = {envname} |
|
|
|
|
|
|
|
[testenv:functionalpy3] |
|
|
|
basepython = python3 |
|
|
|
passenv = * |
|
|
|
setenv = TESTS_DIR=./ironicclient/tests/functional |
|
|
|
LANGUAGE=en_US |
|
|
|
OS_TESTENV_NAME = {envname} |
|
|
|
|
|
|
|
[testenv:docs] |
|
|
|
basepython = python3 |
|
|
|
deps = |
|
|
|
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} |
|
|
|
-r{toxinidir}/requirements.txt |
|
|
@ -75,7 +64,6 @@ commands = |
|
|
|
sphinx-build -W -b html doc/source doc/build/html |
|
|
|
|
|
|
|
[testenv:pdf-docs] |
|
|
|
basepython = python3 |
|
|
|
whitelist_externals = make |
|
|
|
deps = {[testenv:docs]deps} |
|
|
|
commands = |
|
|
@ -97,7 +85,6 @@ enable-extensions=H106,H203,H204,H205,H210,H904 |
|
|
|
import_exceptions = testtools.matchers, ironicclient.common.i18n |
|
|
|
|
|
|
|
[testenv:lower-constraints] |
|
|
|
basepython = python3 |
|
|
|
deps = |
|
|
|
-c{toxinidir}/lower-constraints.txt |
|
|
|
-r{toxinidir}/test-requirements.txt |
|
|
|