| 10 | |
| 11 | |
| 12 | class TestConfig(BaseConfig): |
| 13 | DEBUG = True |
| 14 | TESTING = True |
| 15 | WTF_CSRF_ENABLED = False |
| 16 | SQLALCHEMY_DATABASE_URI = 'sqlite:///:memory:' |
| 17 | |
| 18 | |
| 19 | class DevelopmentConfig(BaseConfig): |
nothing calls this directly
no outgoing calls
no test coverage detected