xapian-haystack/tests/xapian_settings.py
2014-05-11 19:55:10 +02:00

14 lines
286 B
Python
Executable file

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