| 3 | |
| 4 | # default config |
| 5 | class BaseConfig(object): |
| 6 | DEBUG = False |
| 7 | # shortened for readability |
| 8 | SECRET_KEY = '\xbf\xb0\x11\xb1\xcd\xf9\xba\x8bp\x0c...' |
| 9 | SQLALCHEMY_DATABASE_URI = os.environ['DATABASE_URL'] |
| 10 | |
| 11 | |
| 12 | class TestConfig(BaseConfig): |
nothing calls this directly
no outgoing calls
no test coverage detected