
This new python package will allow a nova compute deployment to install a staccato download plugin module. This will allow nova compute to use staccato for downloads. Change-Id: I35257f37c8d92ad96298c10ce1be15b7f53ffaef blueprint: staccato-plugin-for-nova
20 lines
373 B
Python
20 lines
373 B
Python
from oslo.config import cfg
|
|
|
|
import testtools
|
|
|
|
|
|
CONF = cfg.CONF
|
|
|
|
|
|
class BaseTest(testtools.TestCase):
|
|
def setUp(self):
|
|
super(BaseTest, self).setUp()
|
|
|
|
def tearDown(self):
|
|
super(BaseTest, self).tearDown()
|
|
|
|
def config(self, **kw):
|
|
group = kw.pop('group', None)
|
|
for k, v in kw.iteritems():
|
|
CONF.set_override(k, v, group)
|