~maas-maintainers/maas/maas-2.0-new-networking-templates

« back to all changes in this revision

Viewing changes to src/maas/development.py

  • Committer: Gavin Panella
  • Date: 2012-01-23 12:28:04 UTC
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: gavin.panella@canonical.com-20120123122804-up10u13cubdjsx9s
Move maas.testing to maastesting and make it a Django app.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
# Use our custom test runner, which makes sure that a local database
18
18
# cluster is running in the branch.
19
 
TEST_RUNNER = 'maas.testing.runner.TestRunner'
 
19
TEST_RUNNER = 'maastesting.runner.TestRunner'
20
20
 
21
21
# Location where python-oops should store errors.
22
22
OOPS_REPOSITORY = 'logs'
162
162
    'django.contrib.admin',
163
163
    'django.contrib.admindocs',
164
164
    'maasserver',
 
165
    'maastesting',
165
166
    'debug_toolbar',
166
167
)
167
168