summaryrefslogtreecommitdiffstats
path: root/patchwork/tests/__init__.py
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2015-05-28 13:44:14 +0800
committerJeremy Kerr <jk@ozlabs.org>2015-05-28 13:59:36 +0800
commit85916e6c56076a29c6113e169d3e4926a7c886b1 (patch)
tree6e457d6f6a7889d50eda9e6fd04d370671a03d60 /patchwork/tests/__init__.py
parentf7aeab077874d33fc99354661bfeedf508c292b3 (diff)
downloadpatchwork-85916e6c56076a29c6113e169d3e4926a7c886b1.tar.bz2
patchwork-85916e6c56076a29c6113e169d3e4926a7c886b1.tar.xz
tests: Remove old-style test runner module
We get the following warning on django 1.7: 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. This change removes the unneeded base test module, and moves the patchparser doctests into a proper test module. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'patchwork/tests/__init__.py')
-rw-r--r--patchwork/tests/__init__.py35
1 files changed, 0 insertions, 35 deletions
diff --git a/patchwork/tests/__init__.py b/patchwork/tests/__init__.py
index 662386a..e69de29 100644
--- a/patchwork/tests/__init__.py
+++ b/patchwork/tests/__init__.py
@@ -1,35 +0,0 @@
-# Patchwork - automated patch tracking system
-# Copyright (C) 2008 Jeremy Kerr <jk@ozlabs.org>
-#
-# This file is part of the Patchwork package.
-#
-# Patchwork is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# Patchwork is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with Patchwork; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-from patchwork.tests.test_patchparser import *
-from patchwork.tests.test_tags import *
-from patchwork.tests.test_encodings import *
-from patchwork.tests.test_bundles import *
-from patchwork.tests.test_mboxviews import *
-from patchwork.tests.test_updates import *
-from patchwork.tests.test_filters import *
-from patchwork.tests.test_confirm import *
-from patchwork.tests.test_registration import *
-from patchwork.tests.test_user import *
-from patchwork.tests.test_mail_settings import *
-from patchwork.tests.test_notifications import *
-from patchwork.tests.test_list import *
-from patchwork.tests.test_person import *
-from patchwork.tests.test_expiry import *
-from patchwork.tests.test_xmlrpc import *