summaryrefslogtreecommitdiff
path: root/debian/patches/add-django-1.7-compat-with-new-django.setup.patch
blob: f2cf5409e5989bf3c518533195701cd0da423b37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Make unit tests work with Django 1.7
Author: Thomas Goirand <zigo@debian.org>
Bug-Debian: https://bugs.debian.org/764837
Forwarded: no
Last-Update: 2014-10-12

--- factory-boy-2.4.1.orig/tests/test_django.py
+++ factory-boy-2.4.1/tests/test_django.py
@@ -50,6 +50,9 @@ from . import tools
 if django is not None:
     os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'tests.djapp.settings')
 
+    if hasattr(django, 'setup'):
+        django.setup()
+
     from django import test as django_test
     from django.conf import settings
     from django.db import models as django_models