umap/umap/tests/settings.py

19 lines
453 B
Python
Raw Normal View History

2021-05-30 12:31:42 -05:00
import os
2017-05-10 04:12:10 -05:00
2021-05-30 12:31:42 -05:00
from umap.settings.base import * # pylint: disable=W0614,W0401
SECRET_KEY = "justfortests"
COMPRESS_ENABLED = False
FROM_EMAIL = "test@test.org"
EMAIL_BACKEND = 'django.core.mail.backends.locmem.EmailBackend'
2021-05-30 12:31:42 -05:00
if "TRAVIS" in os.environ:
DATABASES = {
"default": {
"ENGINE": "django.contrib.gis.db.backends.postgis",
"NAME": "umap",
"PORT": 5433,
"USER": "travis",
}
}