From 9bec5a2d10ac38872e37a220ad18bd185fb1315e Mon Sep 17 00:00:00 2001
From: Daniel Levy <daniell@aptivate.org>
Date: Wed, 10 Jun 2015 15:44:36 +0100
Subject: [PATCH] Update jenkins settings to be Django 1.8 compatible

---
 django/website/local_settings.py.jenkins | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/django/website/local_settings.py.jenkins b/django/website/local_settings.py.jenkins
index 39f824a1..924477bb 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.
-- 
GitLab