f4faf2a869
Some of the available checks are disabled by default, like: [H106] Don’t put vim configuration in source files [H203] Use assertIs(Not)None to check for None Change-Id: Ic641fcc099ce51ee4c03b0ce17a6f57d326dfd3f
93 lines
2.7 KiB
INI
93 lines
2.7 KiB
INI
[tox]
|
|
minversion = 1.6
|
|
skipsdist = True
|
|
envlist = py{27,35}{,-mysql,-postgresql,-pgsql},functional,pep8
|
|
|
|
[testenv]
|
|
# NOTE(tonyb): This project has chosen to *NOT* consume upper-constraints.txt
|
|
usedevelop = True
|
|
setenv =
|
|
AODH_TEST_DRIVERS=postgresql mysql
|
|
mysql: AODH_TEST_DRIVERS=mysql
|
|
postgresql: AODH_TEST_DRIVERS=postgresql
|
|
|
|
AODH_TEST_DEPS=postgresql,mysql
|
|
mysql: AODH_TEST_DEPS=mysql
|
|
postgresql: AODH_TEST_DEPS=postgresql
|
|
|
|
# TODO(sileht): Remove when infra job are removed
|
|
pgsql: AODH_TEST_DRIVERS=postgresql
|
|
pgsql: AODH_TEST_DEPS=postgresql
|
|
deps = .[test,{env:AODH_TEST_DEPS}]
|
|
passenv = OS_TEST_TIMEOUT OS_STDOUT_CAPTURE OS_STDERR_CAPTURE OS_LOG_CAPTURE AODH_TEST_DRIVERS
|
|
commands =
|
|
{toxinidir}/run-tests.sh --black-regex '^aodh\.tests\.tempest\..*$' {posargs}
|
|
aodh-config-generator
|
|
|
|
[testenv:functional]
|
|
deps = .[mysql,postgresql,test]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
OS_TEST_PATH=aodh/tests/functional/
|
|
GABBI_LIVE_FAIL_IF_NO_TEST=1
|
|
passenv = {[testenv]passenv} AODH_*
|
|
commands =
|
|
{toxinidir}/run-functional-tests.sh ./tools/pretty_tox.sh "{posargs}"
|
|
|
|
[testenv:cover]
|
|
commands =
|
|
pifpaf -g AODH_TEST_STORAGE_URL run mysql -- python setup.py testr --slowest --coverage --testr-args="{posargs}"
|
|
coverage report
|
|
|
|
[testenv:pep8]
|
|
deps = hacking>=0.12,<0.13
|
|
commands =
|
|
flake8
|
|
# Check that .po and .pot files are valid:
|
|
bash -c "find aodh -type f -regex '.*\.pot?' -print0|xargs -0 -n 1 msgfmt --check-format -o /dev/null"
|
|
|
|
[testenv:releasenotes]
|
|
deps = .[doc]
|
|
commands = sphinx-build -a -E -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
|
|
|
[testenv:install-guide]
|
|
deps = .[doc]
|
|
commands = sphinx-build -a -E -W -d install-guide/build/doctrees -b html install-guide/source install-guide/build/html
|
|
|
|
[testenv:genconfig]
|
|
commands = aodh-config-generator
|
|
|
|
[testenv:docs]
|
|
deps = .[test,doc]
|
|
commands = python setup.py build_sphinx
|
|
setenv = PYTHONHASHSEED=0
|
|
|
|
[testenv:venv]
|
|
deps = .[doc]
|
|
commands = {posargs}
|
|
setenv = PYTHONHASHSEED=0
|
|
|
|
[testenv:debug]
|
|
commands = bash -x oslo_debug_helper {posargs}
|
|
|
|
[testenv:debug-mysql]
|
|
deps = .[mysql,test]
|
|
setenv = OS_TEST_PATH=aodh/tests/functional/
|
|
commands = pifpaf -g AODH_TEST_STORAGE_URL run mysql -- oslo_debug_helper {posargs}
|
|
|
|
[testenv:debug-pgsql]
|
|
deps = .[postgresql,test]
|
|
setenv = OS_TEST_PATH=aodh/tests/functional/
|
|
commands = pifpaf -g AODH_TEST_STORAGE_URL run postgresql -- oslo_debug_helper {posargs}
|
|
|
|
[flake8]
|
|
ignore =
|
|
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,install-guide
|
|
# [H106] Don't put vim configuration in source files.
|
|
# [H203] Use assertIs(Not)None to check for None.
|
|
enable-extensions=H106,H203
|
|
show-source = True
|
|
|
|
[hacking]
|
|
import_exceptions =
|
|
aodh.i18n
|