1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[1.6.x] Refs #21197 -- Clarified upgrade check message.

Thanks to Carl and Shai for the discussion.

Backport of 8ff4303 from master.
This commit is contained in:
Russell Keith-Magee
2013-10-08 10:00:39 +08:00
parent 563b5c2000
commit 7f0fdffd07
2 changed files with 6 additions and 8 deletions

View File

@@ -16,10 +16,8 @@ def check_test_runner():
if test_runner_setting == new_default:
message = [
"You have not explicitly set 'TEST_RUNNER'. In Django 1.6,",
"there is a new test runner ('%s')" % new_default,
"by default. You should ensure your tests are still all",
"running & behaving as expected. See",
"Django 1.6 introduced a new default test runner ('%s')" % new_default,
"You should ensure your tests are all running & behaving as expected. See",
"https://docs.djangoproject.com/en/dev/releases/1.6/#discovery-of-tests-in-any-test-module",
"for more information.",
]