diff --git a/projtest/projtest/settings.py b/projtest/projtest/settings.py --- a/projtest/projtest/settings.py +++ b/projtest/projtest/settings.py @@ -131,6 +131,8 @@ INSTALLED_APPS = ( 'south', # Generic mixins for Django. 'braces', + # Enable test-runner. + 'discover_runner', ) # A sample logging configuration. The only tangible logging @@ -164,3 +166,6 @@ LOGGING = { # View that should be called for log-in action. LOGIN_URL="login" + +# Use custom test runner. +TEST_RUNNER = 'discover_runner.DiscoverRunner'