def setUpClass(cls): cls.client = app.test_client() with app.app_context(): init_db() update_db() settings.TESTING = True skf.app.initialize_app(app)
def setUpClass(cls): cls.client = app.test_client() with app.app_context(): update_db() init_db() chatbot_tools.init_dataset() settings.TESTING = True app.app_context().push()
def updatedb_command(): """Update the database with the markdown files.""" update_db() print('Markdown files updated in the database.')
def updatedb_command(): """Update the database with the markdown files.""" update_db() log.info("Database updated with the markdown files.")