示例#1
0
def pytest_configure(config):
    app = Application('test')
    with app.app_context():
        db.create_all()
示例#2
0
def syncdb():
    """Synchronize the models with the database."""
    app = Application()
    with app.app_context():
        db.drop_all()
        db.create_all()
示例#3
0
def syncdb():
    """Synchronize the models with the database."""
    app = Application()
    with app.app_context():
        db.drop_all()
        db.create_all()