From: Stephen Finucane Date: Fri, 21 Aug 2015 14:32:20 +0000 (+0100) Subject: settings: Move 'TEST_RUNNER' to correct location X-Git-Url: https://git.ozlabs.org/?a=commitdiff_plain;h=6c3a5e8d294fdc5eacebffb30fe5379c377e66bc;p=patchwork settings: Move 'TEST_RUNNER' to correct location Try to keep the order/structure of this file intact for as long as possible. Reviewed-by: Damien Lespiau Signed-off-by: Stephen Finucane Signed-off-by: Damien Lespiau --- diff --git a/patchwork/settings/base.py b/patchwork/settings/base.py index 5b40bcb..d00245d 100644 --- a/patchwork/settings/base.py +++ b/patchwork/settings/base.py @@ -50,6 +50,10 @@ LANGUAGE_CODE = 'en-au' USE_I18N = True +# Testing + +TEST_RUNNER = 'django.test.runner.DiscoverRunner' + # URLs ROOT_URLCONF = 'patchwork.urls' @@ -113,5 +117,3 @@ COMPAT_REDIR = True # the scheme based on current access. This is useful if SSL protocol # is terminated upstream of the server (e.g. at the load balancer) FORCE_HTTPS_LINKS = False - -TEST_RUNNER = 'django.test.runner.DiscoverRunner'