Esempio n. 1
0
 def setUpClass(cls):
     cls.client = app.test_client()
     with app.app_context():
         init_db()
         update_db()
         settings.TESTING = True
         skf.app.initialize_app(app)
Esempio n. 2
0
 def setUpClass(cls):
     cls.client = app.test_client()
     with app.app_context():
         init_db()
         update_db()
         settings.TESTING = True
         skf.app.initialize_app(app)
Esempio n. 3
0
 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()
Esempio n. 4
0
def updatedb_command():
    """Update the database with the markdown files."""
    update_db()
    print('Markdown files updated in the database.')
Esempio n. 5
0
def updatedb_command():
    """Update the database with the markdown files."""
    update_db()
    log.info("Database updated with the markdown files.")