summaryrefslogtreecommitdiff
path: root/tests/runtests.py
diff options
context:
space:
mode:
authorTim Schilling <schillingt@better-simple.com>2020-03-30 21:16:33 -0500
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-04-24 10:10:45 +0200
commita92cc84b4a206d18a5f1a0eaa47f19add40ff99b (patch)
tree6350267f49178ae1aef177c6194d6f55e90b005c /tests/runtests.py
parent34a69c24584ec7d842dbf266659b25527cd73909 (diff)
downloaddjango-a92cc84b4a206d18a5f1a0eaa47f19add40ff99b.tar.gz
Refs #31369 -- Deprecated models.NullBooleanField in favor of BooleanField(null=True).
Diffstat (limited to 'tests/runtests.py')
-rwxr-xr-xtests/runtests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/runtests.py b/tests/runtests.py
index a05779010c..8264d40684 100755
--- a/tests/runtests.py
+++ b/tests/runtests.py
@@ -181,6 +181,7 @@ def setup(verbosity, test_labels, parallel, start_at, start_after):
settings.LOGGING = log_config
settings.SILENCED_SYSTEM_CHECKS = [
'fields.W342', # ForeignKey(unique=True) -> OneToOneField
+ 'fields.W903', # NullBooleanField deprecated.
]
# Load all the ALWAYS_INSTALLED_APPS.