Silenced deprecation warning regarding old SQL location; refs #14300
This commit is contained in:
parent
2fd03b39ab
commit
86964a7b4f
|
@ -206,6 +206,14 @@ def django_tests(verbosity, interactive, failfast, test_labels):
|
||||||
interactive=interactive,
|
interactive=interactive,
|
||||||
failfast=failfast,
|
failfast=failfast,
|
||||||
)
|
)
|
||||||
|
# Catch warnings thrown in test DB setup -- remove in Django 1.9
|
||||||
|
with warnings.catch_warnings():
|
||||||
|
warnings.filterwarnings(
|
||||||
|
'ignore',
|
||||||
|
"Custom SQL location '<app_label>/models/sql' is deprecated, "
|
||||||
|
"use '<app_label>/sql' instead.",
|
||||||
|
PendingDeprecationWarning
|
||||||
|
)
|
||||||
failures = test_runner.run_tests(
|
failures = test_runner.run_tests(
|
||||||
test_labels or get_installed(), extra_tests=extra_tests)
|
test_labels or get_installed(), extra_tests=extra_tests)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue