xapian-haystack/tests/xapian_settings.py
2015-04-16 20:28:02 +02:00

15 lines
325 B
Python
Executable file

import os
from settings import *
INSTALLED_APPS = [
'test_haystack.core',
'test_haystack.xapian_tests',
]
HAYSTACK_CONNECTIONS = {
'default': {
'ENGINE': 'haystack.backends.xapian_backend.XapianEngine',
'PATH': os.path.join('tmp', 'test_xapian_query'),
'INCLUDE_SPELLING': True,
}
}