add framework and tox
[doctor.git] / tests / config.py
1 ##############################################################################\r
2 # Copyright (c) 2017 ZTE Corporation and others.\r
3 #\r
4 # All rights reserved. This program and the accompanying materials\r
5 # are made available under the terms of the Apache License, Version 2.0\r
6 # which accompanies this distribution, and is available at\r
7 # http://www.apache.org/licenses/LICENSE-2.0\r
8 ##############################################################################\r
9 from oslo_config import cfg\r
10 \r
11 \r
12 def list_opts():\r
13     return []\r
14 \r
15 \r
16 def prepare_conf(conf=None):\r
17     if conf is None:\r
18         conf = cfg.ConfigOpts()\r
19 \r
20     for group, options in list_opts():\r
21         conf.register_opts(list(options),\r
22                            group=None if group == 'DEFAULT' else group)\r
23 \r
24     return conf\r