@staticmethod
def config_parse(conf=None, args=None):
"""Create the default configurations."""
- # neutron.conf.test includes rpc_backend which needs to be cleaned up
+ # neutron.conf includes rpc_backend which needs to be cleaned up
if args is None:
args = []
- args += ['--config-file', etcdir('neutron.conf.test')]
+ args += ['--config-file', etcdir('neutron.conf')]
if conf is None:
config.init(args=args)
else:
with mock.patch.object(sys, 'argv') as sys_argv:
sys_argv.return_value = [
'dhcp', '--config-file',
- base.etcdir('neutron.conf.test')]
+ base.etcdir('neutron.conf')]
cfg.CONF.register_opts(dhcp_config.DHCP_AGENT_OPTS)
config.register_interface_driver_opts_helper(cfg.CONF)
config.register_agent_state_opts_helper(cfg.CONF)
with mock.patch.object(sys, 'argv') as sys_argv:
with mock.patch(launcher_str) as launcher:
sys_argv.return_value = ['dhcp', '--config-file',
- base.etcdir('neutron.conf.test')]
+ base.etcdir('neutron.conf')]
entry.main()
launcher.assert_has_calls(
[mock.call(), mock.call().launch_service(mock.ANY),
"ExtensionExtendedAttributeTestPlugin"
)
- # point config file to: neutron/tests/etc/neutron.conf.test
+ # point config file to: neutron/tests/etc/neutron.conf
self.config_parse()
self.setup_coreplugin(plugin)
def setup_config(self):
# Create the default configurations
- args = ['--config-file', base.etcdir('neutron.conf.test')]
+ args = ['--config-file', base.etcdir('neutron.conf')]
# If test_config specifies some config-file, use it, as well
for config_file in test_lib.test_config.get('config_files', []):
args.extend(['--config-file', config_file])
# Checks for coding and style guidelines
flake8
sh ./tools/coding-checks.sh --pylint '{posargs}'
- neutron-db-manage check_migration
+ neutron-db-manage --config-file neutron/tests/etc/neutron.conf check_migration
whitelist_externals =
sh
bash