From 9b23c32f4778e6ae2d836ba3d7d0833a329e9380 Mon Sep 17 00:00:00 2001
From: Michael Fladischer <fladi@debian.org>
Date: Fri, 16 Oct 2015 11:10:35 +0200
Subject: Remove django-jenkins from test dependencies

 Upstream uses django-jenkins for test integration but it is optional in just
 running the tests. This patch removes django-jenkins from the test
 settings.py file.
Last-Update: 2015-06-24
Forwarded: not-needed

Patch-Name: remove_django_jenkins.patch
---
 tests/settings.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/settings.py b/tests/settings.py
index 4163ff0..1664263 100644
--- a/tests/settings.py
+++ b/tests/settings.py
@@ -1,5 +1,5 @@
 PROJECT_APPS = ('django_fsm', 'testapp',)
-INSTALLED_APPS = ('django.contrib.contenttypes', 'django.contrib.auth', 'guardian', 'django_jenkins') + PROJECT_APPS
+INSTALLED_APPS = ('django.contrib.contenttypes', 'django.contrib.auth', 'guardian') + PROJECT_APPS
 DATABASE_ENGINE = 'sqlite3'
 SECRET_KEY = 'nokey'
 MIDDLEWARE_CLASSES = ()
