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

Added ElasticSearch configuration to tests

This commit is contained in:
Karl Hobley 2014-02-21 22:15:35 +00:00
parent 057701bba9
commit 8f3b846e6c

View File

@ -61,7 +61,13 @@ if not settings.configured:
'wagtail.wagtailembeds',
'wagtail.wagtailsearch',
'wagtail.wagtailredirects',
]
],
WAGTAILSEARCH_BACKENDS = {
'default': {
'BACKEND': 'wagtail.wagtailsearch.backends.elasticsearch.ElasticSearch',
'RUN_TESTS': True,
}
}
)