﻿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
22807	Strange manage.py check warning when using cached template loader	jdimov	nobody	"With Django 1.7, when I have TEMPLATE_LOADERS defined in the settings.py file to use caching, the ./manage.py check command complains with the following seemingly unrelated warning: 


{{{
$ ./manage.py check
System check identified some issues:

WARNINGS:
?: (1_6.W001) Some project unittests may not execute as expected.
	HINT: Django 1.6 introduced a new default test runner. It looks like this project was generated using Django 1.5 or earlier. You should ensure your tests are all running & behaving as expected. See https://docs.djangoproject.com/en/dev/releases/1.6/#new-test-runner for more information.

}}}

When I remove the setting, I get the expected ""System check identified no issues (0 silenced).""

The setting in question is this:


{{{
TEMPLATE_LOADERS = (
        ('django.template.loaders.cached.Loader', (
            'django.template.loaders.filesystem.Loader',
            'django.template.loaders.app_directories.Loader',
            )),
        )
}}}
"	Bug	closed	Testing framework	1.7-beta-2	Normal	wontfix			Unreviewed	0	0	0	0	1	0
