def app(request): db_fd, temp_db_location = tempfile.mkstemp() config = {'DATABASE': temp_db_location, 'TESTING': True, 'DB_FD': db_fd} app = create_app(config=config) with app.app_context(): init_db() yield app
def app(request): db_fd.temp_db_location = tempfile.mkstemp() config = { 'DATABASE':temp_db_location, 'TESTING':True, 'DB_FD':db_fd } app = create_app(config=config) with app.app_context(): init_db() yield app
def app(): db_fd, db_path = tempfile.mkstemp() config = { 'DATABASE': db_path, 'TESTING': True, } app = create_app(config=config) with app.app_context(): init_db() yield app os.close(db_fd) os.unlink(db_path)
def initdb_command(): """Creates the database tables.""" init_db() print('Initialized the database.')
def initdb_command(): init_db() print('Initialized the database')