Added max retries option + tests

This commit is contained in:
Swen Kooij
2017-02-02 15:01:40 +02:00
parent 1ef02616ec
commit 9a976d5ec8
4 changed files with 39 additions and 8 deletions

View File

@@ -1,6 +1,7 @@
from unittest import mock
from django.db import connection
from django.apps import apps
from django.conf import settings
from django.test import TestCase
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
@@ -8,7 +9,6 @@ from django.db.backends.base.schema import BaseDatabaseSchemaEditor
from localized_fields import LocalizedField, get_language_codes
from .fake_model import define_fake_model
from django.apps import apps
class DBBackendTestCase(TestCase):