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