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'), } }