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

Ignored docutils deprecation warnings in runtests.py.

üst 6b5ae929
......@@ -22,7 +22,10 @@ from django.utils._os import upath
from django.utils.deprecation import RemovedInDjango20Warning
from django.utils.log import DEFAULT_LOGGING
# Make deprecation warnings errors to ensure no usage of deprecated features.
warnings.simplefilter("error", RemovedInDjango20Warning)
# Ignore known warnings in test dependencies.
warnings.filterwarnings("ignore", "'U' mode is deprecated", DeprecationWarning, module='docutils.io')
RUNTESTS_DIR = os.path.abspath(os.path.dirname(upath(__file__)))
......
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