1
0
mirror of https://github.com/django/django.git synced 2025-10-26 23:26:08 +00:00

Refs #21197 -- Clarified upgrade check message.

Thanks to Carl and Shai for the discussion.
This commit is contained in:
Russell Keith-Magee
2013-10-08 10:00:39 +08:00
parent 935001c4f1
commit 8ff4303946
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.",
]