Beispiel #1
0
    def setup(self):
        os.environ['MODE'] = 'TESTING'

        app = create_app()
        self.app = app

        self.client = app.test_client()

        with app.app_context():
            db.drop_all()
            db.create_all()
Beispiel #2
0
def createdb():
    """Create database."""
    db.create_all()
Beispiel #3
0
def initdb():
    with create_app().app_context() as ctx:
        db.create_all()
    click.echo('Initialized the database')