summaryrefslogtreecommitdiff
path: root/tests/proxy_model_inheritance
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2014-01-20 10:45:21 +0800
committerRussell Keith-Magee <russell@keith-magee.com>2014-01-20 10:45:21 +0800
commitd818e0c9b2b88276cc499974f9eee893170bf0a8 (patch)
tree13ef631f7ba50bf81fa36f484abf925ba8172651 /tests/proxy_model_inheritance
parent6e7bd0b63bd01949ac4fd647f2597639bed0c3a2 (diff)
downloaddjango-d818e0c9b2b88276cc499974f9eee893170bf0a8.tar.gz
Fixed #16905 -- Added extensible checks (nee validation) framework
This is the result of Christopher Medrela's 2013 Summer of Code project. Thanks also to Preston Holmes, Tim Graham, Anssi Kääriäinen, Florian Apolloner, and Alex Gaynor for review notes along the way. Also: Fixes #8579, fixes #3055, fixes #19844.
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)