Using oslo-config-generator to instead of generate-config-file.sh

We don't need a separate script to wrap the oslo-config-generator. Like
other projects, we can just specify a config-generator config file to
define the namespaces.

Change-Id: Icc9b7b41baf89683c54f6aefcb3c4257f1e2f3d6
This commit is contained in:
liusheng 2015-10-20 18:45:44 +08:00
parent 7bba3f7300
commit 9641cce831
3 changed files with 12 additions and 11 deletions

View File

@ -0,0 +1,10 @@
[DEFAULT]
output_file = etc/aodh/aodh.conf
wrap_width = 79
namespace = aodh
namespace = oslo.db
namespace = oslo.log
namespace = oslo.messaging
namespace = oslo.policy
namespace = oslo.service.service
namespace = keystonemiddleware.auth_token

View File

@ -1,9 +0,0 @@
#!/bin/sh
oslo-config-generator --output-file etc/aodh/aodh.conf \
--namespace aodh \
--namespace oslo.db \
--namespace oslo.log \
--namespace oslo.messaging \
--namespace oslo.policy \
--namespace oslo.service.service \
--namespace keystonemiddleware.auth_token

View File

@ -14,7 +14,7 @@ setenv = VIRTUAL_ENV={envdir}
passenv = OS_TEST_TIMEOUT OS_STDOUT_CAPTURE OS_STDERR_CAPTURE OS_LOG_CAPTURE
commands =
python setup.py testr --slowest --testr-args="{posargs}"
{toxinidir}/generate-config-file.sh
oslo-config-generator --config-file=etc/aodh/aodh-config-generator.conf
whitelist_externals = bash
# TODO(ityaptin): With separation tests to unit and functional folders we need
@ -65,7 +65,7 @@ commands =
bash -c "find aodh -type f -regex '.*\.pot?' -print0|xargs -0 -n 1 msgfmt --check-format -o /dev/null"
[testenv:genconfig]
commands = {toxinidir}/generate-config-file.sh
commands = oslo-config-generator --config-file=etc/aodh/aodh-config-generator.conf
[testenv:docs]
commands = python setup.py build_sphinx