mirror of
https://github.com/Hopiu/xapian-haystack.git
synced 2026-05-02 20:44:55 +00:00
Changes were mostly on how the query parser parsed a query. Probabily we should not test that anyway, but for now it is passing in 1.3.3
15 lines
326 B
Python
Executable file
15 lines
326 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,
|
|
}
|
|
}
|