2012-10-04 22:49:26 +02:00
|
|
|
from settings import *
|
2013-01-10 19:05:53 +01:00
|
|
|
import os
|
2012-10-02 17:57:46 +02:00
|
|
|
|
2013-05-08 05:30:42 +02:00
|
|
|
DATABASES["default"] = {"NAME": "humbug_test",
|
|
|
|
"USER": "humbug_test",
|
|
|
|
"PASSWORD": "xxxxxxxxxxxx",
|
|
|
|
"HOST": "localhost",
|
|
|
|
"SCHEMA": "humbug",
|
|
|
|
"ENGINE": "django.db.backends.postgresql_psycopg2",
|
|
|
|
"TEST_NAME": "django_humbug_tests",
|
|
|
|
"OPTIONS": { },}
|
|
|
|
|
2012-11-09 18:13:16 +01:00
|
|
|
|
2013-01-10 19:05:53 +01:00
|
|
|
if "TORNADO_SERVER" in os.environ:
|
|
|
|
TORNADO_SERVER = os.environ["TORNADO_SERVER"]
|
|
|
|
else:
|
|
|
|
TORNADO_SERVER = None
|
2012-12-11 18:12:40 +01:00
|
|
|
|
|
|
|
# Decrease the get_updates timeout to 1 second.
|
|
|
|
# This allows CasperJS to proceed quickly to the next test step.
|
|
|
|
POLL_TIMEOUT = 1000
|
2013-01-09 00:10:37 +01:00
|
|
|
|
2013-01-10 19:05:53 +01:00
|
|
|
# Don't use the real message log for tests
|
2013-01-14 20:09:25 +01:00
|
|
|
EVENT_LOG_DIR = '/tmp/humbug-test-event-log'
|
2013-01-10 19:05:53 +01:00
|
|
|
|
|
|
|
# Print our emails rather than sending them
|
|
|
|
EMAIL_BACKEND = 'django.core.mail.backends.locmem.EmailBackend'
|
2013-01-10 19:41:49 +01:00
|
|
|
|
|
|
|
TEST_SUITE = True
|
2013-05-29 23:58:07 +02:00
|
|
|
RATE_LIMITING = False
|
2013-01-11 21:16:42 +01:00
|
|
|
# Don't use rabbitmq from the test suite -- the user_profile_ids for
|
|
|
|
# any generated queue elements won't match those being used by the
|
|
|
|
# real app.
|
|
|
|
USING_RABBITMQ = False
|
|
|
|
|
2013-03-18 18:40:47 +01:00
|
|
|
# Disable the tutorial because it confuses the client tests.
|
|
|
|
TUTORIAL_ENABLED = False
|
|
|
|
|
2013-01-10 19:05:53 +01:00
|
|
|
# Disable use of memcached for caching
|
2013-07-02 23:29:00 +02:00
|
|
|
CACHES['database'] = {
|
|
|
|
'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
|
|
|
|
'LOCATION': 'humbug-database-test-cache',
|
|
|
|
'TIMEOUT': 3600,
|
|
|
|
'OPTIONS': {
|
|
|
|
'MAX_ENTRIES': 100000
|
|
|
|
}
|
|
|
|
}
|
2013-01-22 23:16:56 +01:00
|
|
|
|
2013-03-27 22:07:45 +01:00
|
|
|
LOGGING['loggers']['humbug.requests']['level'] = 'CRITICAL'
|