From 91023d79ec70df9289271e63a67675ee51e7dea8 Mon Sep 17 00:00:00 2001 From: Simon Charette Date: Wed, 11 Jan 2017 23:13:01 -0500 Subject: [PATCH] Removed available_apps on TestCase subclasses. TestCase subclasses are wrapped in a transaction that prevents any data from being persisted between test runs andi thus don't require limiting the tables to be flushed to a subset of available apps like TransactionTestCase subclasses do. --- tests/fixtures/tests.py | 1 - tests/multiple_database/tests.py | 5 ----- tests/swappable_models/tests.py | 6 ------ 3 files changed, 12 deletions(-) diff --git a/tests/fixtures/tests.py b/tests/fixtures/tests.py index 5c4fdd514a4..ff85a9b7529 100644 --- a/tests/fixtures/tests.py +++ b/tests/fixtures/tests.py @@ -689,7 +689,6 @@ class NonExistentFixtureTests(TestCase): """ Custom class to limit fixture dirs. """ - available_apps = ['django.contrib.auth', 'django.contrib.contenttypes'] def test_loaddata_not_existent_fixture_file(self): stdout_output = six.StringIO() diff --git a/tests/multiple_database/tests.py b/tests/multiple_database/tests.py index 0a70b20dad0..0ea3b6667e1 100644 --- a/tests/multiple_database/tests.py +++ b/tests/multiple_database/tests.py @@ -1794,11 +1794,6 @@ class SyncOnlyDefaultDatabaseRouter(object): class MigrateTestCase(TestCase): - 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 a9a77518887..548c7b32861 100644 --- a/tests/swappable_models/tests.py +++ b/tests/swappable_models/tests.py @@ -11,12 +11,6 @@ from django.utils.six import StringIO class SwappableModelTests(TestCase): - 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"