0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-24 10:58:52 +01:00

Search: Database backend is now default for tests

This commit is contained in:
Karl Hobley 2014-02-23 22:28:09 +00:00
parent 8d353032c0
commit 46304a31b3

View File

@ -67,6 +67,9 @@ if not settings.configured:
],
WAGTAILSEARCH_BACKENDS = {
'default': {
'BACKEND': 'wagtail.wagtailsearch.backends.db.DBSearch',
},
'elasticsearch': {
'BACKEND': 'wagtail.wagtailsearch.backends.elasticsearch.ElasticSearch',
'RUN_TESTS': True,
}