Include admin_tools root package in test coverage

This commit is contained in:
Mike Korobov 2010-04-26 09:56:51 +06:00
parent bd8ab95785
commit cdef8653f6
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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',