mirror of
https://github.com/django/django.git
synced 2025-11-01 12:25:37 +00:00
Improved test isolation of the admin tests and assigned custom admin sites to
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
This commit is contained in:
parent
fc06ec0daf
commit
7b21bfc074
18 changed files with 904 additions and 630 deletions
7
tests/regressiontests/admin_inlines/urls.py
Normal file
7
tests/regressiontests/admin_inlines/urls.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
from django.conf.urls import patterns, include
|
||||
|
||||
import admin
|
||||
|
||||
urlpatterns = patterns('',
|
||||
(r'^admin/', include(admin.site.urls)),
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue