Reorder apps to make tests run
authorZygmunt Krynicki <zygmunt.krynicki@linaro.org>
Tue, 14 Jun 2011 08:59:46 +0000 (10:59 +0200)
committerZygmunt Krynicki <zygmunt.krynicki@linaro.org>
Tue, 14 Jun 2011 08:59:46 +0000 (10:59 +0200)
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.

linaro_django_pagination/test_project/settings.py

index cff9836..47da7e4 100644 (file)
@@ -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',