Exemple #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)
Exemple #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)
Exemple #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()
Exemple #4
0
def updatedb_command():
    """Update the database with the markdown files."""
    update_db()
    print('Markdown files updated in the database.')
Exemple #5
0
def updatedb_command():
    """Update the database with the markdown files."""
    update_db()
    log.info("Database updated with the markdown files.")