From 3c0c30fb7375b7fce5abd1fb2c35713e16466f4b Mon Sep 17 00:00:00 2001 From: Bo-Chun Louis Chen <louistw@uab.edu> Date: Fri, 25 May 2018 12:48:28 -0500 Subject: [PATCH] Added testing configuration --- config.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/config.py b/config.py index 103d964..ada99f0 100644 --- a/config.py +++ b/config.py @@ -20,7 +20,15 @@ class ProductionConfig(Config): DEBUG = False +class TestingConfig(Config): + """ + Testing configurations + """ + + TESTING = True + app_config = { 'development': DevelopmentConfig, - 'production': ProductionConfig + 'production': ProductionConfig, + 'testing': TestingConfig } -- GitLab