From cdef8653f66ceb4c32e2987880ac1a53beac96c5 Mon Sep 17 00:00:00 2001 From: Mike Korobov Date: Mon, 26 Apr 2010 09:56:51 +0600 Subject: [PATCH] Include admin_tools root package in test coverage --- runtests.sh | 2 +- test_proj/settings.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/runtests.sh b/runtests.sh index ca8687a..7d9c7b7 100755 --- a/runtests.sh +++ b/runtests.sh @@ -1,5 +1,5 @@ #!/bin/sh -default_unit='dashboard theming menu' +default_unit='admin_tools dashboard theming menu' default_all="$default_unit test_app" if [ $# -eq 0 ] then diff --git a/test_proj/settings.py b/test_proj/settings.py index 4188305..5f2bab3 100644 --- a/test_proj/settings.py +++ b/test_proj/settings.py @@ -6,7 +6,7 @@ MEDIA_URL = '/static/' DATABASE_ENGINE = 'sqlite3' DATABASE_NAME = 'testdb.sqlite' SITE_ID = 1 -#DEBUG = True +DEBUG = True TEMPLATE_LOADERS = ( 'django.template.loaders.filesystem.load_template_source', @@ -34,6 +34,7 @@ FIXTURE_DIRS = ['fixtures'] INSTALLED_APPS = [ + 'admin_tools', 'admin_tools.theming', 'admin_tools.menu', 'admin_tools.dashboard',