From patchwork Fri Aug 21 14:32:20 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Finucane X-Patchwork-Id: 509508 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [103.22.144.68]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id E510C1402A9 for ; Sat, 22 Aug 2015 00:34:55 +1000 (AEST) Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id CB7491A1D87 for ; Sat, 22 Aug 2015 00:34:55 +1000 (AEST) X-Original-To: patchwork@lists.ozlabs.org Delivered-To: patchwork@lists.ozlabs.org Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by lists.ozlabs.org (Postfix) with ESMTP id 5DDEC1A0205 for ; Sat, 22 Aug 2015 00:32:36 +1000 (AEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga101.fm.intel.com with ESMTP; 21 Aug 2015 07:32:32 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,722,1432623600"; d="scan'208";a="629748518" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga003.jf.intel.com with ESMTP; 21 Aug 2015 07:32:31 -0700 Received: from sivswdev01.ir.intel.com (sivswdev01.ir.intel.com [10.237.217.45]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id t7LEWUiR007187; Fri, 21 Aug 2015 15:32:30 +0100 Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id t7LEWUVb010878; Fri, 21 Aug 2015 15:32:30 +0100 Received: (from sfinucan@localhost) by sivswdev01.ir.intel.com with id t7LEWUY9010874; Fri, 21 Aug 2015 15:32:30 +0100 From: Stephen Finucane To: patchwork@lists.ozlabs.org Subject: [PATCH v2 16/16] settings: Move 'TEST_RUNNER' to correct location Date: Fri, 21 Aug 2015 15:32:20 +0100 Message-Id: <1440167540-8751-17-git-send-email-stephen.finucane@intel.com> X-Mailer: git-send-email 2.0.0 In-Reply-To: <1440167540-8751-1-git-send-email-stephen.finucane@intel.com> References: <1440167540-8751-1-git-send-email-stephen.finucane@intel.com> X-BeenThere: patchwork@lists.ozlabs.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Patchwork development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: patchwork-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Patchwork" Try to keep the order/structure of this file intact for as long as possible. Signed-off-by: Stephen Finucane --- patchwork/settings/base.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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'