django-notifications/manage.py
theodore.therone@gmail.com 9608ee8a6e Added tests, confirmed works for python2/3
Also added .travis.yml
2015-03-28 08:25:56 +00:00

10 lines
No EOL
290 B
Python
Executable file

#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
if 'test' in sys.argv:
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "notifications.test_settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)