django-helpdesk/helpdesk/tests/__init__.py
2022-04-23 02:06:35 -04:00

10 lines
255 B
Python

# import all test_*.py files in directory.
# necessary 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")