
This PS simply allows tox -e py35 to take in regular expressions for better testing experience. For example: tox -e py35 # runs all unit tests tox -e py35 -- test_armada_controller # only run unit tests that match Change-Id: Iab5a70fa0d51e1572a31943d8f38bc9b0d6a7c18
57 lines
1.3 KiB
INI
57 lines
1.3 KiB
INI
[tox]
|
|
skipsdist = True
|
|
envlist = py35, pep8, coverage, bandit
|
|
|
|
[testenv]
|
|
deps=
|
|
-r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
passenv=HTTP_PROXY HTTPS_PROXY http_proxy https_proxy NO_PROXY no_proxy
|
|
setenv=
|
|
VIRTUAL_ENV={envdir}
|
|
basepython = python3.5
|
|
usedevelop = True
|
|
install_command = pip install {opts} {packages}
|
|
whitelist_externals = find
|
|
flake8
|
|
commands =
|
|
find . -type f -name "*.pyc" -delete
|
|
python -V
|
|
{toxinidir}/tools/run-unit-tests.sh {posargs}
|
|
|
|
[testenv:docs]
|
|
commands =
|
|
python setup.py build_sphinx
|
|
|
|
[testenv:genconfig]
|
|
commands =
|
|
oslo-config-generator --config-file=etc/armada/config-generator.conf
|
|
|
|
[testenv:genpolicy]
|
|
commands =
|
|
oslopolicy-sample-generator --config-file=etc/armada/policy-generator.conf
|
|
|
|
[testenv:pep8]
|
|
commands =
|
|
flake8 {posargs}
|
|
|
|
[testenv:bandit]
|
|
commands =
|
|
bandit -r armada -x armada/tests -n 5
|
|
|
|
[testenv:coverage]
|
|
passenv=http_proxy https_proxy no_proxy HTTP_PROXY HTTPS_PROXY NO_PROXY
|
|
setenv=
|
|
VIRTUAL_ENV={envdir}
|
|
commands =
|
|
python -m pytest \
|
|
--cov-branch \
|
|
--cov-report term-missing:skip-covered \
|
|
--cov-config .coveragerc \
|
|
--cov=armada
|
|
|
|
[flake8]
|
|
filename= *.py
|
|
ignore = E722
|
|
exclude= .git, .idea, .tox, *.egg-info, *.eggs, bin, dist, hapi, docs/*, build/*
|