From 29e2746e7803bc77f9adf95210e3009f9d982c3d Mon Sep 17 00:00:00 2001 From: Carl Meyer Date: Fri, 10 May 2013 23:08:45 -0400 Subject: [PATCH] Fixed #17365, #17366, #18727 -- Switched to discovery test runner. Thanks to Preston Timmons for the bulk of the work on the patch, especially updating Django's own test suite to comply with the requirements of the new runner. Thanks also to Jannis Leidel and Mahdi Yusuf for earlier work on the patch and the discovery runner. Refs #11077, #17032, and #18670. --- formtools/tests/__init__.py | 2 -- formtools/tests/urls.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/formtools/tests/__init__.py b/formtools/tests/__init__.py index 2bbeea8..e69de29 100644 --- a/formtools/tests/__init__.py +++ b/formtools/tests/__init__.py @@ -1,2 +0,0 @@ -from django.contrib.formtools.tests.tests import * -from django.contrib.formtools.tests.wizard import * diff --git a/formtools/tests/urls.py b/formtools/tests/urls.py index 739095d..f96f89e 100644 --- a/formtools/tests/urls.py +++ b/formtools/tests/urls.py @@ -5,7 +5,7 @@ This is a URLconf to be loaded by tests.py. Add any URLs needed for tests only. from __future__ import absolute_import from django.conf.urls import patterns, url -from django.contrib.formtools.tests import TestFormPreview +from django.contrib.formtools.tests.tests import TestFormPreview from django.contrib.formtools.tests.forms import TestForm