e7f630651f
This ps updates the build commands to allow the same format to be used in att-comdev projects Change-Id: Ibc5be98636b2d0f29654a66261df27367ded49a6
81 lines
2.0 KiB
INI
81 lines
2.0 KiB
INI
[tox]
|
|
envlist = pep8,bandit,unit
|
|
|
|
[testenv]
|
|
setenv = YAMLDIR = {toxinidir}/tests/yaml_samples/
|
|
basepython=python3.5
|
|
deps=
|
|
-rrequirements-direct.txt
|
|
-rrequirements-test.txt
|
|
|
|
[testenv:freeze]
|
|
whitelist_externals=rm
|
|
deps=
|
|
-rrequirements-direct.txt
|
|
commands=
|
|
rm requirements-lock.txt
|
|
sh -c "pip freeze --all | grep -v 'drydock-provisioner' > requirements-lock.txt"
|
|
|
|
[testenv:yapf]
|
|
whitelist_externals=find
|
|
commands=
|
|
yapf -i -r --style=pep8 {toxinidir}/setup.py
|
|
yapf -i -r --style=pep8 {toxinidir}/alembic
|
|
yapf -i -r --style=pep8 {toxinidir}/drydock_provisioner
|
|
yapf -i -r --style=pep8 {toxinidir}/tests
|
|
find {toxinidir}/drydock_provisioner -name '__init__.py' -exec yapf -i --style=pep8 \{\} ;
|
|
|
|
[testenv:unit]
|
|
usedevelop=True
|
|
setenv=
|
|
PYTHONWARNING=all
|
|
YAMLDIR={toxinidir}/tests/yaml_samples/
|
|
commands=
|
|
py.test \
|
|
--cov=drydock_provisioner \
|
|
{toxinidir}/tests/unit/{posargs}
|
|
|
|
[testenv:integration]
|
|
passenv=DOCKER_REGISTRY IMAGE_NAME IMAGE_PREFIX IMAGE_TAG
|
|
setenv=
|
|
PYTHONWARNING=all
|
|
YAMLDIR={toxinidir}/tests/yaml_samples/
|
|
commands=
|
|
{toxinidir}/tests/postgres/start_postgres.sh
|
|
py.test \
|
|
{toxinidir}/tests/integration/postgres/{posargs}
|
|
|
|
[testenv:coverage]
|
|
usedevelop=True
|
|
passenv=DOCKER_REGISTRY IMAGE_NAME IMAGE_PREFIX IMAGE_TAG
|
|
setenv=
|
|
YAMLDIR={toxinidir}/tests/yaml_samples/
|
|
commands=
|
|
{toxinidir}/tests/postgres/start_postgres.sh
|
|
py.test --cov=drydock_provisioner \
|
|
{toxinidir}/tests/unit/ {toxinidir}/tests/integration/postgres
|
|
|
|
[testenv:genconfig]
|
|
commands = oslo-config-generator --config-file=etc/drydock/drydock-config-generator.conf
|
|
|
|
[testenv:genpolicy]
|
|
commands = oslopolicy-sample-generator --config-file etc/drydock/drydock-policy-generator.conf
|
|
|
|
[testenv:pep8]
|
|
commands = flake8 \
|
|
{posargs}
|
|
|
|
[testenv:bandit]
|
|
commands = bandit -r drydock_provisioner -n 5
|
|
|
|
[flake8]
|
|
ignore=E302,H306,H304,W503,E251
|
|
exclude= venv,.venv,.git,.idea,.tox,*.egg-info,*.eggs,bin,dist,./build/,alembic/
|
|
max-line-length=119
|
|
|
|
[testenv:docs]
|
|
whitelist_externals=rm
|
|
commands =
|
|
rm -rf docs/build
|
|
sphinx-build -b html docs/source docs/build
|