django-helpdesk/helpdesk/tests/__init__.py
2015-11-13 15:35:36 +01:00

10 lines
256 B
Python

# import all test_*.py files in directory.
# neccessary for automatic discovery in django <= 1.5
# http://stackoverflow.com/a/15780326/1382740
import unittest
def suite():
return unittest.TestLoader().discover("helpdesk.tests", pattern="test_*.py")