Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosp420 committed May 6, 2015
1 parent 3a48274 commit 9a490bc
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions voseq/public_interface/tests/test_views.py
Expand Up @@ -10,18 +10,31 @@
'default': {
'ENGINE': 'haystack.backends.elasticsearch_backend.ElasticsearchSearchEngine',
'URL': 'http://127.0.0.1:9200/',
'TIMEOUT': 60 * 10,
'INDEX_NAME': 'test_index',
'INDEX_NAME': 'haystack',
'INCLUDE_SPELLING': True,
'EXCLUDED_INDEXES': ['public_interface.search_indexes.AdvancedSearchIndex'],
'EXCLUDED_INDEXES': [
'public_interface.search_indexes.AdvancedSearchIndex',
'public_interface.search_indexes.VouchersIndex',
],
},
'vouchers': {
'ENGINE': 'haystack.backends.elasticsearch_backend.ElasticsearchSearchEngine',
'URL': 'http://127.0.0.1:9200/',
'INDEX_NAME': 'vouchers',
'INCLUDE_SPELLING': False,
'EXCLUDED_INDEXES': [
'public_interface.search_indexes.SimpleSearchIndex',
'public_interface.search_indexes.AdvancedSearchIndex',
],
},
'advanced_search': {
'ENGINE': 'haystack.backends.elasticsearch_backend.ElasticsearchSearchEngine',
'URL': 'http://127.0.0.1:9200/',
'TIMEOUT': 60 * 10,
'INDEX_NAME': 'test_advanced_search_index',
'INDEX_NAME': 'advanced_search',
'INCLUDE_SPELLING': False,
'EXCLUDED_INDEXES': ['public_interface.search_indexes.SimpleSearchIndex'],
'EXCLUDED_INDEXES': [
'public_interface.search_indexes.SimpleSearchIndex',
],
},
}

Expand Down

0 comments on commit 9a490bc

Please sign in to comment.