From: Zygmunt Krynicki Date: Tue, 14 Jun 2011 08:59:46 +0000 (+0200) Subject: Reorder apps to make tests run X-Git-Tag: release-2.0~10 X-Git-Url: https://git.mdrn.pl/django-pagination.git/commitdiff_plain/e130542deba5ff5957caff73c22cc1cfbbf92ebb?hp=c8a9f4983b1e6247bbb17d69257f144fafb4e646 Reorder apps to make tests run Tests in django-testproject are not invoked for all applications as that takes lots of time (we don't want to test auth all over again). Instead, by default, only the last application test suite is invoked. --- diff --git a/linaro_django_pagination/test_project/settings.py b/linaro_django_pagination/test_project/settings.py index cff9836..47da7e4 100644 --- a/linaro_django_pagination/test_project/settings.py +++ b/linaro_django_pagination/test_project/settings.py @@ -41,8 +41,8 @@ from django_testproject.settings import gen_settings locals().update( gen_settings( INSTALLED_APPS=[ - 'linaro_django_pagination', 'example', + 'linaro_django_pagination', ], MIDDLEWARE_CLASSES=[ 'linaro_django_pagination.middleware.PaginationMiddleware',