1c3e14665c
This adds heat-specific contents of the OpenStack Installation Guide in the aodh repo per [1]. A separate change will remove the aodh contents from the OpenStack Installation Guide for Newton per [2]. The aodh install-guide structure is based on Install Guide Cookiecutter [3]. Also adds tox.ini environment for install-guide. [1] http://specs.openstack.org/openstack/docs-specs/specs/newton/project-specific-installguides.html [2] http://specs.openstack.org/openstack/docs-specs/specs/newton/installguide.html [3] https://review.openstack.org/#/c/314229/ Partially-Implements: blueprint projectspecificinstallguides Change-Id: Ib72b57f9422564c49bf8f24f94f4b76f335e7495
117 lines
3.6 KiB
INI
117 lines
3.6 KiB
INI
[tox]
|
|
minversion = 1.6
|
|
skipsdist = True
|
|
envlist = py34,py27,pep8
|
|
|
|
[testenv]
|
|
deps = .[test]
|
|
install_command = pip install -U {opts} {packages}
|
|
usedevelop = True
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
OS_TEST_PATH=aodh/tests/unit
|
|
passenv = OS_TEST_TIMEOUT OS_STDOUT_CAPTURE OS_STDERR_CAPTURE OS_LOG_CAPTURE
|
|
commands =
|
|
python setup.py testr --slowest --testr-args="{posargs}"
|
|
oslo-config-generator --config-file=etc/aodh/aodh-config-generator.conf
|
|
whitelist_externals = bash
|
|
|
|
[testenv:py27-hbase]
|
|
deps = .[hbase,test]
|
|
setenv = OS_TEST_PATH=aodh/tests/functional/
|
|
AODH_TEST_STORAGE_URL=hbase://__test__
|
|
|
|
[testenv:py27-mongodb]
|
|
deps = .[mongodb,test]
|
|
setenv = OS_TEST_PATH=aodh/tests/functional/
|
|
commands =
|
|
pifpaf -g AODH_TEST_STORAGE_URL run mongodb -- python setup.py testr --slowest --testr-args="{posargs}"
|
|
|
|
[testenv:py27-mysql]
|
|
deps = .[mysql,test]
|
|
setenv = OS_TEST_PATH=aodh/tests/functional/
|
|
commands =
|
|
pifpaf -g AODH_TEST_STORAGE_URL run mysql -- python setup.py testr --slowest --testr-args="{posargs}"
|
|
|
|
[testenv:py27-pgsql]
|
|
deps = .[postgresql,test]
|
|
setenv = OS_TEST_PATH=aodh/tests/functional/
|
|
commands =
|
|
pifpaf -g AODH_TEST_STORAGE_URL run postgresql -- python setup.py testr --slowest --testr-args="{posargs}"
|
|
|
|
[testenv:functional]
|
|
deps = .[mysql,postgresql,mongodb,hbase,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}"
|
|
|
|
# NOTE(chdent): The gabbi tests are also run under the primary tox
|
|
# targets. This target simply provides a target to directly run just
|
|
# gabbi tests without needing to discovery across the entire body of
|
|
# tests.
|
|
[testenv:gabbi]
|
|
deps = .[mysql,test]
|
|
setenv = OS_TEST_PATH=aodh/tests/functional/gabbi
|
|
commands =
|
|
pifpaf -g AODH_TEST_STORAGE_URL run mysql -- python setup.py testr --testr-args="{posargs}"
|
|
|
|
[testenv:cover]
|
|
commands = pifpaf -g AODH_TEST_STORAGE_URL run mysql -- python setup.py testr --slowest --coverage --testr-args="{posargs}"
|
|
|
|
[testenv:pep8]
|
|
deps = hacking<0.12,>=0.11.0
|
|
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 = oslo-config-generator --config-file=etc/aodh/aodh-config-generator.conf
|
|
|
|
[testenv:docs]
|
|
deps = .[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-mongodb]
|
|
deps = .[mongodb,test]
|
|
setenv = OS_TEST_PATH=aodh/tests/functional/
|
|
commands = pifpaf -g AODH_TEST_STORAGE_URL run mongodb -- 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,./aodh/openstack/common,*lib/python*,*egg,build,install-guide
|
|
show-source = True
|
|
|
|
[hacking]
|
|
import_exceptions =
|
|
aodh.i18n
|