Skip to content

Instantly share code, notes, and snippets.

@justquick
Forked from bwreilly/django_haystack_testing
Last active April 25, 2017 00:07
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save justquick/098ba177d75949ee2022 to your computer and use it in GitHub Desktop.
Save justquick/098ba177d75949ee2022 to your computer and use it in GitHub Desktop.
import haystack
from django.core.management import call_command
from django.test.utils import override_settings
TEST_INDEX = {
'default': {
'ENGINE': 'haystack.backends.elasticsearch_backend.ElasticsearchSearchEngine',
'URL': 'http://127.0.0.1:9200/',
'TIMEOUT': 60 * 10,
'INDEX_NAME': 'test_index',
},
}
@override_settings(HAYSTACK_CONNECTIONS=TEST_INDEX)
class BaseTestCase(TestCase):
def setUp(self):
haystack.connections.reload('default')
super(BaseTestCase, self).setUp()
def tearDown(self):
call_command('clear_index', interactive=False, verbosity=0)
@seansisson
Copy link

from django.test import TestCase

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment