summaryrefslogtreecommitdiff
path: root/tests/proxy_model_inheritance
diff options
context:
space:
mode:
Diffstat (limited to 'tests/proxy_model_inheritance')
-rw-r--r--tests/proxy_model_inheritance/tests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/proxy_model_inheritance/tests.py b/tests/proxy_model_inheritance/tests.py
index 5ad5e08c25..11acbd216d 100644
--- a/tests/proxy_model_inheritance/tests.py
+++ b/tests/proxy_model_inheritance/tests.py
@@ -5,6 +5,7 @@ import sys
from django.core.management import call_command
from django.test import TestCase, TransactionTestCase
+from django.test.utils import override_system_checks
from django.utils._os import upath
from .models import (ConcreteModel, ConcreteModelSubclass,
@@ -26,6 +27,9 @@ class ProxyModelInheritanceTests(TransactionTestCase):
def tearDown(self):
sys.path = self.old_sys_path
+ # `auth` app is imported, but not installed in this test, so we need to
+ # exclude checks registered by this app.
+ @override_system_checks([])
def test_table_exists(self):
with self.modify_settings(INSTALLED_APPS={'append': ['app1', 'app2']}):
call_command('migrate', verbosity=0)