diff --git a/congress_tempest_tests/plugin.py b/congress_tempest_tests/plugin.py index 8d8b776d4..68ab4f83e 100644 --- a/congress_tempest_tests/plugin.py +++ b/congress_tempest_tests/plugin.py @@ -31,9 +31,16 @@ class CongressTempestPlugin(plugins.TempestPlugin): return full_test_dir, base_path def register_opts(self, conf): + config.register_opt_group(conf, + config_congress.service_available_group, + config_congress.ServiceAvailableGroup) config.register_opt_group(conf, config_congress.congressha_group, config_congress.CongressHAGroup) def get_opt_lists(self): - return [(config_congress.congressha_group.name, - config_congress.CongressHAGroup)] + return [ + (config_congress.congressha_group.name, + config_congress.CongressHAGroup), + (config_congress.service_available_group.name, + config_congress.ServiceAvailableGroup) + ]