Minor fixes to tests.

This commit is contained in:
Raphaël Barrois 2015-07-02 16:35:15 +02:00
parent 5b97c14368
commit 8e65ae4558
2 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,8 @@ if django_loaded: # pragma: no cover
},
INSTALLED_APPS=[
'tests.django_test_app',
]
],
MIDDLEWARE_CLASSES=[],
)
# https://docs.djangoproject.com/en/dev/releases/1.7/#app-loading-changes
if django.VERSION >= (1, 7):

View File

@ -179,11 +179,10 @@ class SouthTestCase(unittest.TestCase):
if django_loaded:
from django.test import TestCase
try:
from django.test.runner import DiscoverRunner as TestRunner
except ImportError:
# django < 1.6
if django.VERSION[:2] < (1, 6):
from django.test.simple import DjangoTestSuiteRunner as TestRunner
else:
from django.test.runner import DiscoverRunner as TestRunner
class DbInteractingTestCase(TestCase):