2015-01-05 15:01:42 +01:00
|
|
|
"""
|
|
|
|
Settings file for OpenSlides' tests
|
|
|
|
"""
|
2013-03-14 22:18:56 +01:00
|
|
|
|
2014-01-11 15:47:15 +01:00
|
|
|
import os
|
2015-06-16 10:37:23 +02:00
|
|
|
|
2013-09-25 10:01:01 +02:00
|
|
|
from openslides.global_settings import * # noqa
|
2013-03-14 22:18:56 +01:00
|
|
|
|
2014-01-11 15:47:15 +01:00
|
|
|
# Path to the directory for user specific data files
|
|
|
|
OPENSLIDES_USER_DATA_PATH = os.path.realpath(os.path.dirname(__file__))
|
|
|
|
|
2013-03-14 22:18:56 +01:00
|
|
|
|
2015-01-05 15:01:42 +01:00
|
|
|
# SECURITY WARNING: Keep the secret key used in production secret!
|
2014-10-11 14:34:49 +02:00
|
|
|
SECRET_KEY = 'secret'
|
2014-01-11 15:47:15 +01:00
|
|
|
|
2015-01-22 18:29:12 +01:00
|
|
|
# OpenSlides plugins
|
|
|
|
# Add plugins to this list.
|
2015-01-05 15:01:42 +01:00
|
|
|
|
2015-01-22 18:29:12 +01:00
|
|
|
INSTALLED_PLUGINS += (
|
2016-02-16 22:51:38 +01:00
|
|
|
'tests.integration.test_plugin',
|
2015-01-22 18:29:12 +01:00
|
|
|
)
|
2015-01-05 15:01:42 +01:00
|
|
|
|
2013-03-14 22:18:56 +01:00
|
|
|
INSTALLED_APPS += INSTALLED_PLUGINS
|
2013-03-18 21:50:50 +01:00
|
|
|
|
2015-01-05 15:01:42 +01:00
|
|
|
|
|
|
|
# Database
|
|
|
|
# Change this to use MySQL or PostgreSQL.
|
|
|
|
# See https://docs.djangoproject.com/en/1.7/ref/settings/#databases
|
|
|
|
|
|
|
|
DATABASES = {
|
|
|
|
'default': {
|
|
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-01-11 15:47:15 +01:00
|
|
|
# Some other settings
|
2015-01-05 15:01:42 +01:00
|
|
|
|
2014-01-11 15:47:15 +01:00
|
|
|
TIME_ZONE = 'Europe/Berlin'
|
|
|
|
|
|
|
|
MEDIA_ROOT = os.path.join(OPENSLIDES_USER_DATA_PATH, '')
|
2013-09-08 14:44:41 +02:00
|
|
|
|
2015-01-05 15:01:42 +01:00
|
|
|
STATICFILES_DIRS.insert(0, os.path.join(OPENSLIDES_USER_DATA_PATH, 'static'))
|
|
|
|
|
2016-01-03 15:33:51 +01:00
|
|
|
SEARCH_INDEX = 'ram'
|
2015-01-05 15:01:42 +01:00
|
|
|
|
2014-01-11 15:47:15 +01:00
|
|
|
|
2015-01-05 15:01:42 +01:00
|
|
|
# Special test settings
|
|
|
|
# Use a faster password hasher.
|
2014-01-11 15:47:15 +01:00
|
|
|
|
2013-10-31 09:43:19 +01:00
|
|
|
PASSWORD_HASHERS = (
|
|
|
|
'django.contrib.auth.hashers.MD5PasswordHasher',
|
|
|
|
)
|