diff --git a/watcher_tempest_plugin/config.py b/watcher_tempest_plugin/config.py index 5d8bca1d4..426399d26 100644 --- a/watcher_tempest_plugin/config.py +++ b/watcher_tempest_plugin/config.py @@ -17,11 +17,7 @@ from oslo_config import cfg -service_available_group = cfg.OptGroup(name="service_available", - title="Available OpenStack Services") - -ServiceAvailableGroup = [ - cfg.BoolOpt("watcher", - default=True, - help="Whether or not watcher is expected to be available"), -] +service_option = cfg.BoolOpt("watcher", + default=True, + help="Whether or not watcher is expected to be " + "available") diff --git a/watcher_tempest_plugin/plugin.py b/watcher_tempest_plugin/plugin.py index f2c3f8597..560c544ce 100644 --- a/watcher_tempest_plugin/plugin.py +++ b/watcher_tempest_plugin/plugin.py @@ -13,7 +13,6 @@ import os -from tempest import config from tempest.test_discover import plugins from watcher_tempest_plugin import config as watcher_config @@ -28,9 +27,8 @@ class WatcherTempestPlugin(plugins.TempestPlugin): return full_test_dir, base_path def register_opts(self, conf): - config.register_opt_group( - conf, watcher_config.service_available_group, - watcher_config.ServiceAvailableGroup) + conf.register_opt(watcher_config.service_option, + group='service_available') def get_opt_lists(self): - return [] + return [('service_available', [watcher_config.service_option])]