mirror of
https://github.com/django/django.git
synced 2025-04-14 12:24:36 +00:00
[1.11.x] Refs #27790 -- Reverted "Removed available_apps on TestCase subclasses."
This reverts commit 91023d79ec70df9289271e63a67675ee51e7dea8 as it increases memory usage for the test suite. Backport of 7d50d2bcb8a3cf3fea727174717ead7e6508e9e2 from master
This commit is contained in:
parent
f706576adf
commit
aa52e8b77b
@ -1794,6 +1794,12 @@ class SyncOnlyDefaultDatabaseRouter(object):
|
||||
|
||||
class MigrateTestCase(TestCase):
|
||||
|
||||
# Limit memory usage when calling 'migrate'.
|
||||
available_apps = [
|
||||
'multiple_database',
|
||||
'django.contrib.auth',
|
||||
'django.contrib.contenttypes'
|
||||
]
|
||||
multi_db = True
|
||||
|
||||
def test_migrate_to_other_database(self):
|
||||
|
@ -11,6 +11,13 @@ from django.utils.six import StringIO
|
||||
|
||||
class SwappableModelTests(TestCase):
|
||||
|
||||
# Limit memory usage when calling 'migrate'.
|
||||
available_apps = [
|
||||
'swappable_models',
|
||||
'django.contrib.auth',
|
||||
'django.contrib.contenttypes',
|
||||
]
|
||||
|
||||
@override_settings(TEST_ARTICLE_MODEL='swappable_models.AlternateArticle')
|
||||
def test_generated_data(self):
|
||||
"Permissions and content types are not created for a swapped model"
|
||||
|
Loading…
x
Reference in New Issue
Block a user