xapian-haystack/tests/xapian_settings.py
2011-07-14 16:14:07 -07:00

17 lines
367 B
Python
Executable file

# Copyright (C) 2009, 2010, 2011 David Sauve
# Copyright (C) 2009, 2010 Trapeze
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,
}
}