Changeset 3133
- Timestamp:
- 06/16/06 13:58:45 (2 years ago)
- Files:
-
- django/trunk/tests/runtests.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/tests/runtests.py
r2996 r3133 22 22 23 23 ALWAYS_INSTALLED_APPS = [ 24 'django.contrib. admin',24 'django.contrib.contenttypes', 25 25 'django.contrib.auth', 26 'django.contrib.comments', 27 'django.contrib.contenttypes', 26 'django.contrib.sites', 28 27 'django.contrib.flatpages', 29 28 'django.contrib.redirects', 30 29 'django.contrib.sessions', 31 'django.contrib.sites', 30 'django.contrib.comments', 31 'django.contrib.admin', 32 32 ] 33 33 … … 149 149 # Initialize the test database. 150 150 cursor = connection.cursor() 151 152 # Install the core always installed apps 153 for app in ALWAYS_INSTALLED_APPS: 154 self.output(1, "Installing contrib app %s" % app) 155 mod = __import__(app + ".models", '', '', ['']) 156 management.install(mod) 151 157 152 158 # Run the tests for each test model.
