summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-01-27 20:06:55 -0500
committerTim Graham <timograham@gmail.com>2017-01-28 10:01:13 -0500
commit7d50d2bcb8a3cf3fea727174717ead7e6508e9e2 (patch)
tree9fa7f02475d979d011df3aa7db5a88870f9ed726
parentd5b573d872bbe0d5825efaee2d41cb3cdc75417b (diff)
Refs #27790 -- Reverted "Removed available_apps on TestCase subclasses."
This reverts commit 91023d79ec70df9289271e63a67675ee51e7dea8 as it increases memory usage for the test suite.
-rw-r--r--tests/multiple_database/tests.py6
-rw-r--r--tests/swappable_models/tests.py7
2 files changed, 13 insertions, 0 deletions
diff --git a/tests/multiple_database/tests.py b/tests/multiple_database/tests.py
index ec04a37e2f..0cd313d87c 100644
--- a/tests/multiple_database/tests.py
+++ b/tests/multiple_database/tests.py
@@ -1792,6 +1792,12 @@ class SyncOnlyDefaultDatabaseRouter:
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):
diff --git a/tests/swappable_models/tests.py b/tests/swappable_models/tests.py
index e9d15db015..bdf681dd87 100644
--- a/tests/swappable_models/tests.py
+++ b/tests/swappable_models/tests.py
@@ -10,6 +10,13 @@ from .models import Article
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"