| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 | 
							- import os
 - 
 - from django.conf import settings, global_settings
 - from oscar import OSCAR_CORE_APPS
 - 
 - 
 - if not settings.configured:
 -     from oscar.defaults import *
 -     oscar_settings = dict([(k, v) for k, v in locals().items() if k.startswith('OSCAR_')])
 - 
 -     # Helper function to extract absolute path
 -     location = lambda x: os.path.join(os.path.dirname(os.path.realpath(__file__)), x)
 - 
 -     settings.configure(
 -             DATABASES={
 -                 'default': {
 -                     'ENGINE': 'django.db.backends.sqlite3',
 -                     'NAME': ':memory:',
 -                     }
 -                 },
 -             INSTALLED_APPS=[
 -                 'django.contrib.auth',
 -                 'django.contrib.admin',
 -                 'django.contrib.contenttypes',
 -                 'django.contrib.sessions',
 -                 'django.contrib.sites',
 -                 'django.contrib.flatpages',
 -                 ] + OSCAR_CORE_APPS,
 -             TEMPLATE_CONTEXT_PROCESSORS=(
 -                 "django.contrib.auth.context_processors.auth",
 -                 "django.core.context_processors.request",
 -                 "django.core.context_processors.debug",
 -                 "django.core.context_processors.i18n",
 -                 "django.core.context_processors.media",
 -                 "django.core.context_processors.static",
 -                 "django.contrib.messages.context_processors.messages",
 -                 'oscar.apps.search.context_processors.search_form',
 -                 'oscar.apps.promotions.context_processors.promotions',
 -                 'oscar.apps.checkout.context_processors.checkout',
 -                 ),
 -             TEMPLATE_DIRS=(
 -                 location('templates'),
 -                 ),
 -             MIDDLEWARE_CLASSES=global_settings.MIDDLEWARE_CLASSES + (
 -                 'oscar.apps.basket.middleware.BasketMiddleware',
 -                 ),
 -             AUTHENTICATION_BACKENDS=(
 -                 'oscar.apps.customer.auth_backends.Emailbackend',
 -                 'django.contrib.auth.backends.ModelBackend',
 -                 ),
 -             ROOT_URLCONF='tests.urls',
 -             LOGIN_REDIRECT_URL='/accounts/',
 -             DEBUG=False,
 -             SITE_ID=1,
 -             HAYSTACK_SEARCH_ENGINE='dummy',
 -             HAYSTACK_SITECONF = 'oscar.search_sites',
 -             APPEND_SLASH=True,
 -             **oscar_settings
 -         )
 
 
  |