83e2431b35
The current behavior of 'genconfig' is writing file 'mistral.conf.sample' directly to the '/etc/mistral' directory. This has two problems: the /etc/mistral directory may and may not exist; we are supposed to write a usable configuration file into the '/etc/mistral' directory instead of a sample file. This patch redirects the output path to the local 'etc' subdirectory. Developers/users can then tune and install the configuration file based on the sample. Change-Id: I0c75ab9ffc9960ba12ce6f5d725c0c7bb78ef238
71 lines
2.1 KiB
INI
71 lines
2.1 KiB
INI
[tox]
|
|
envlist = py35,py34,py27,pep8
|
|
minversion = 1.6
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = {toxinidir}/tools/tox_install.sh {env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
PYTHONDONTWRITEBYTECODE = 1
|
|
PYTHONWARNINGS=default::DeprecationWarning
|
|
passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
commands =
|
|
find . -type f -name "*.pyc" -delete
|
|
python setup.py testr --slowest --testr-args='{posargs}'
|
|
whitelist_externals =
|
|
rm
|
|
find
|
|
|
|
[testenv:unit-postgresql]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
passenv = ZUUL_PROJECT
|
|
commands = ./run_tests.sh -V --db-type postgresql
|
|
|
|
[testenv:unit-mysql]
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
passenv = ZUUL_PROJECT
|
|
commands = ./run_tests.sh -V --db-type mysql
|
|
|
|
[testenv:pep8]
|
|
commands = flake8 {posargs} . {toxinidir}/tools/get_action_list.py {toxinidir}/tools/sync_db.py
|
|
|
|
[testenv:cover]
|
|
# Also do not run test_coverage_ext tests while gathering coverage as those
|
|
# tests conflict with coverage.
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
commands =
|
|
python setup.py testr --coverage \
|
|
--testr-args='^(?!.*test.*coverage).*$'
|
|
coverage report
|
|
|
|
[testenv:genconfig]
|
|
commands =
|
|
oslo-config-generator --config-file tools/config/config-generator.mistral.conf \
|
|
--output-file etc/mistral.conf.sample
|
|
|
|
#set PYTHONHASHSEED=0 to prevent wsmeext.sphinxext from randomly failing.
|
|
[testenv:venv]
|
|
setenv = PYTHONHASHSEED=0
|
|
commands = {posargs}
|
|
|
|
#set PYTHONHASHSEED=0 to prevent wsmeext.sphinxext from randomly failing.
|
|
[testenv:docs]
|
|
setenv = PYTHONHASHSEED=0
|
|
commands = python setup.py build_sphinx
|
|
|
|
[testenv:releasenotes]
|
|
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
|
|
|
#Skip PEP257 violation.
|
|
[flake8]
|
|
ignore = D100,D101,D102,D103,D104,D105,D200,D203,D202,D204,D205,D208,D400,D401
|
|
show-source = true
|
|
builtins = _
|
|
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,tools,scripts
|
|
|
|
[hacking]
|
|
local-check-factory = mistral.hacking.checks.factory
|
|
import_exceptions = mistral._i18n
|