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