django-eav2/tests/test_settings.py
2017-09-05 12:01:20 +02:00

22 lines
402 B
Python

import os
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
SECRET_KEY = 'fake-key'
SITE_ID = 1
INSTALLED_APPS = [
'django.contrib.auth',
'django.contrib.sites',
'django.contrib.contenttypes',
"tests",
"eav"
]
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'TEST_NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}