Skip to content

Commit

Permalink
Fix Django test app manage.py for Django >= 1.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellrj committed Feb 13, 2015
1 parent f76f62c commit 8be9a3f
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions tests/testapp/manage.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
#!/usr/bin/env python
from django.core.management import execute_manager
import imp
import os

from django.core.management import execute_from_command_line

#Added for test runner
import os, sys
sys.path.insert(0, os.path.abspath('./../../'))

try:
imp.find_module('settings') # Assumed to be in the same directory.
except ImportError:
import sys
sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n" % __file__)
sys.exit(1)

import settings

if __name__ == "__main__":
execute_manager(settings)
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'settings')
execute_from_command_line()

0 comments on commit 8be9a3f

Please sign in to comment.