mirror of
https://github.com/django/django.git
synced 2024-11-18 07:26:04 +00:00
7b21bfc074
prevent test order dependant failures. This involves introducing usage of `TestCase.urls` and implementing proper admin.py modules for some of the test apps. Thanks Florian Apolloner for finding the issue and contributing the patch. Refs #15294 (it solves these problems so the fix for that ticket we are going to commit doesn't introduce obscure and hard to reproduce test failures when running the Django test suite.) git-svn-id: http://code.djangoproject.com/svn/django/trunk@16856 bcc190cf-cafb-0310-a4f2-bffc1f526a37
29 lines
985 B
Python
29 lines
985 B
Python
from django.conf.urls import patterns, include
|
|
|
|
|
|
urlpatterns = patterns('',
|
|
# test_client modeltest urls
|
|
(r'^test_client/', include('modeltests.test_client.urls')),
|
|
(r'^test_client_regress/', include('regressiontests.test_client_regress.urls')),
|
|
|
|
# File upload test views
|
|
(r'^file_uploads/', include('regressiontests.file_uploads.urls')),
|
|
|
|
# Always provide the auth system login and logout views
|
|
(r'^accounts/login/$', 'django.contrib.auth.views.login', {'template_name': 'login.html'}),
|
|
(r'^accounts/logout/$', 'django.contrib.auth.views.logout'),
|
|
|
|
# test urlconf for {% url %} template tag
|
|
(r'^url_tag/', include('regressiontests.templates.urls')),
|
|
|
|
# django built-in views
|
|
(r'^views/', include('regressiontests.views.urls')),
|
|
|
|
# test urlconf for middleware tests
|
|
(r'^middleware/', include('regressiontests.middleware.urls')),
|
|
|
|
# admin widget tests
|
|
(r'widget_admin/', include('regressiontests.admin_widgets.urls')),
|
|
|
|
)
|