diff --git a/config.py b/config.py index 103d96418b220d23f960e63f565fbfcce105f1f6..ada99f0a8ecb113b843d8b295e65dc361348f1a9 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 }