示例#1
0
 def setUp(self):
     super(MigrationCheckersMixin, self).setUp()
     self.config = dbsync._get_alembic_config()
     self.config.ironic_inspector_config = CONF
     # create AlembicExtension with fake config and replace
     # with real one.
     self.migration_ext = ext_alembic.AlembicExtension(
         self.engine, {'alembic_ini_path': ''})
     self.migration_ext.config = self.config
 def setUp(self):
     super(MigrationCheckersMixin, self).setUp()
     self.config = dbsync._get_alembic_config()
     self.config.ironic_inspector_config = CONF
     # create AlembicExtension with fake config and replace
     # with real one.
     self.migration_ext = ext_alembic.AlembicExtension(
         self.engine, {'alembic_ini_path': ''})
     self.migration_ext.config = self.config
示例#3
0
 def db_sync(self, engine):
     config = dbsync._get_alembic_config()
     config.ironic_inspector_config = CONF
     with patch_with_engine(engine):
         alembic.command.upgrade(config, 'head')
 def db_sync(self, engine):
     config = dbsync._get_alembic_config()
     config.ironic_inspector_config = CONF
     with patch_with_engine(engine):
         alembic.command.upgrade(config, 'head')