Kaydet (Commit) 99cd80dc authored tarafından Tim Graham's avatar Tim Graham

Silenced test warning for deprecated IPAddressField.

üst e01fa711
......@@ -221,6 +221,11 @@ def django_tests(verbosity, interactive, failfast, test_labels):
"use '<app_label>/sql' instead.",
RemovedInDjango19Warning
)
warnings.filterwarnings(
'ignore',
'IPAddressField has been deprecated. Use GenericIPAddressField instead.',
RemovedInDjango19Warning
)
failures = test_runner.run_tests(
test_labels or get_installed(), extra_tests=extra_tests)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment