renamed test_django_filters to tests.

Thanks to Donald Stufft for the heads up
This commit is contained in:
Florian Apolloner 2013-03-12 19:38:12 +01:00
parent 879e9f6159
commit a89a83772a
15 changed files with 6 additions and 6 deletions

View File

@ -6,4 +6,4 @@ include runshell.py
include runtests.py
recursive-include docs *
recursive-include requirements *
recursive-include test_django_filters *
recursive-include tests *

View File

@ -14,7 +14,7 @@ if not settings.configured:
},
INSTALLED_APPS=(
'django_filters',
'test_django_filters',
'tests',
),
ROOT_URLCONF=None,
USE_TZ=True,

View File

@ -13,7 +13,7 @@ if not settings.configured:
},
INSTALLED_APPS=(
'django_filters',
'test_django_filters',
'tests',
),
ROOT_URLCONF=None,
USE_TZ=True,

View File

@ -13,7 +13,7 @@ setup(
author='Alex Gaynor',
author_email='alex.gaynor@gmail.com',
url='http://github.com/alex/django-filter/tree/master',
packages=find_packages(exclude=['test_django_filters']),
packages=find_packages(exclude=['tests']),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',

View File

@ -12,8 +12,8 @@ from .models import Book
class GenericViewTestCase(TestCase):
urls = 'test_django_filters.urls'
urls = 'tests.urls'
def setUp(self):
Book.objects.create(
title="Ender's Game", price='1.00', average_rating=3.0)