﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
23923	Promote Django's deprecation warnings to errors in runtests.py	Tim Graham	nobody	"The Django test suite should run without any visible deprecation warnings.

By changing:
{{{
warnings.simplefilter(""default"", RemovedInDjango19Warning)
warnings.simplefilter(""default"", RemovedInDjango20Warning)
}}} 
to:
{{{
warnings.simplefilter(""error"", RemovedInDjango19Warning)
warnings.simplefilter(""error"", RemovedInDjango20Warning)
}}}
in `runtests.py` we can have Jenkins (which runs with -Wall) fail builds that introduce unsilenced deprecation warnings. This will save us time from having to track them down after the fact."	Cleanup/optimization	closed	Testing framework	dev	Normal	fixed			Accepted	1	0	0	0	0	0
