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'
|
2018-11-20 15:24:15 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
# I need separate connections for multiprocessing tests
|
|
|
|
'create': {
|
|
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
|
|
|
'NAME': 'test',
|
|
|
|
'USER': 'test',
|
|
|
|
'PASSWORD': 'test',
|
|
|
|
'HOST': '127.0.0.1',
|
|
|
|
'PORT': '5432'
|
|
|
|
},
|
|
|
|
'update': {
|
|
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
|
|
|
'NAME': 'test',
|
|
|
|
'USER': 'test',
|
|
|
|
'PASSWORD': 'test',
|
|
|
|
'HOST': '127.0.0.1',
|
|
|
|
'PORT': '5432'
|
|
|
|
},
|
|
|
|
'delete': {
|
|
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
|
|
|
'NAME': 'test',
|
|
|
|
'USER': 'test',
|
|
|
|
'PASSWORD': 'test',
|
|
|
|
'HOST': '127.0.0.1',
|
|
|
|
'PORT': '5432'
|
|
|
|
},
|
2018-11-12 18:20:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
LOGGING = {
|
|
|
|
'version': 1,
|
|
|
|
'handlers': {
|
|
|
|
'console': {
|
|
|
|
'class': 'logging.StreamHandler',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'loggers': {
|
|
|
|
'django-clickhouse': {
|
|
|
|
'handlers': ['console'],
|
|
|
|
'level': 'DEBUG'
|
2018-11-16 11:14:40 +03:00
|
|
|
},
|
|
|
|
'infi.clickhouse-orm': {
|
|
|
|
'handlers': ['console'],
|
|
|
|
'level': 'INFO'
|
2018-11-12 18:20:46 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
INSTALLED_APPS = [
|
2018-11-14 10:52:01 +03:00
|
|
|
"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': ''
|
2018-11-28 13:30:19 +03:00
|
|
|
},
|
|
|
|
'secondary': {
|
|
|
|
'db_name': 'test_2',
|
|
|
|
'username': 'default',
|
|
|
|
'password': ''
|
2018-11-15 15:37:58 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-14 10:52:01 +03:00
|
|
|
CLICKHOUSE_SYNC_BATCH_SIZE = 5000
|
2018-11-15 15:37:58 +03:00
|
|
|
|
2018-11-14 10:52:01 +03:00
|
|
|
CLICKHOUSE_REDIS_CONFIG = {
|
|
|
|
'host': '127.0.0.1',
|
|
|
|
'port': 6379,
|
|
|
|
'db': 8,
|
|
|
|
'socket_timeout': 10
|
|
|
|
}
|