django-clickhouse/tests/settings.py

53 lines
915 B
Python
Raw Normal View History

2018-11-12 18:20:46 +03:00
"""
This file contains django settings to run tests with runtests.py
"""
SECRET_KEY = 'fake-key'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'test',
'USER': 'test',
'PASSWORD': 'test',
'HOST': '127.0.0.1',
'PORT': '5432'
}
}
LOGGING = {
'version': 1,
'handlers': {
'console': {
'class': 'logging.StreamHandler',
},
},
'loggers': {
'django-clickhouse': {
'handlers': ['console'],
'level': 'DEBUG'
}
}
}
INSTALLED_APPS = [
"src",
2018-11-12 18:20:46 +03:00
"tests"
]
2018-11-15 15:37:58 +03:00
CLICKHOUSE_DATABASES = {
'default': {
'db_name': 'test',
'username': 'default',
'password': ''
}
}
CLICKHOUSE_SYNC_BATCH_SIZE = 5000
2018-11-15 15:37:58 +03:00
CLICKHOUSE_REDIS_CONFIG = {
'host': '127.0.0.1',
'port': 6379,
'db': 8,
'socket_timeout': 10
}