Exemplo n.º 1
0
def main(argv=None):

    if argv is None:
        argv = sys.argv

    # Prepare the Tuskar service and load the database backend.
    service.prepare_service(argv)
    get_backend()

    migration.db_sync()
Exemplo n.º 2
0
def main(argv=None):

    if argv is None:
        argv = sys.argv

    # Prepare the Tuskar service and load the database backend.
    service.prepare_service(argv)
    get_backend()

    migration.db_sync()
Exemplo n.º 3
0
 def test_migration_ok(self):
     db_migration.db_sync()
Exemplo n.º 4
0
 def test_sync_and_version(self):
     migration.db_sync()
     v = migration.db_version()
     self.assertTrue(v > migration.INIT_VERSION)
Exemplo n.º 5
0
 def test_migration_ok(self):
     db_migration.db_sync()
Exemplo n.º 6
0
def main():
    service.prepare_service(sys.argv)
    migration.db_sync()
Exemplo n.º 7
0
def main():
    migration.db_sync()
Exemplo n.º 8
0
def main():
    service.prepare_service(sys.argv)
    migration.db_sync()