diff --git a/django/website/local_settings.py.jenkins b/django/website/local_settings.py.jenkins index 39f824a13b0ea1fcef20121c946afc34809b7bf7..570d4dede605be5eff9ea7263eb71ae34f5fbe31 100644 --- a/django/website/local_settings.py.jenkins +++ b/django/website/local_settings.py.jenkins @@ -11,8 +11,10 @@ DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. 'NAME': 'jenkins_internewshid', # Or path to database file if using sqlite3. - 'TEST_NAME': 'jenkins_internewshid', # Or path to database file if using sqlite3. - 'TEST_MIRROR': 'default', # trick django into not creating the default test database + 'TEST': { + 'NAME': 'jenkins_internewshid', # Or path to database file if using sqlite3. + 'MIRROR': 'default', # trick django into not creating the default test database + } 'USER': 'internewshid', # Not used with sqlite3. 'PASSWORD': private_settings.DB_PASSWORD, # Not used with sqlite3. 'HOST': '', # Set to empty string for localhost. Not used with sqlite3.