Skip to content
Snippets Groups Projects
Commit 3c0c30fb authored by Bo-Chun Chen's avatar Bo-Chun Chen
Browse files

Added testing configuration

parent 94038ec2
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,15 @@ class ProductionConfig(Config): ...@@ -20,7 +20,15 @@ class ProductionConfig(Config):
DEBUG = False DEBUG = False
class TestingConfig(Config):
"""
Testing configurations
"""
TESTING = True
app_config = { app_config = {
'development': DevelopmentConfig, 'development': DevelopmentConfig,
'production': ProductionConfig 'production': ProductionConfig,
'testing': TestingConfig
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment