2016-04-04 14:59:11 +02:00
|
|
|
"""Flask configuration file for unit testing."""
|
|
|
|
|
|
|
|
BLENDER_ID_ENDPOINT = 'http://127.0.0.1:8001' # nonexistant server, no trailing slash!
|
|
|
|
|
2016-04-04 16:10:55 +02:00
|
|
|
DEBUG = False
|
2016-04-04 14:59:11 +02:00
|
|
|
TESTING = True
|
|
|
|
|
|
|
|
CDN_STORAGE_USER = 'u41508580125621'
|
2016-07-08 11:26:56 +02:00
|
|
|
|
|
|
|
FILESIZE_LIMIT_BYTES_NONSUBS = 20 * 2 ** 10
|
2017-03-03 12:00:24 +01:00
|
|
|
ROLES_FOR_UNLIMITED_UPLOADS = {'subscriber', 'demo', 'admin'}
|
2017-03-22 15:46:24 +01:00
|
|
|
|
|
|
|
GCLOUD_APP_CREDENTIALS = 'invalid-file-because-gcloud-storage-should-be-mocked-in-tests'
|
|
|
|
STORAGE_BACKEND = 'local'
|