mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 16:03:19 +01:00
10 lines
256 B
Python
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")
|