mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2024-12-13 18:31:10 +01:00
7 lines
212 B
Python
7 lines
212 B
Python
from os.path import dirname, basename, isfile
|
|
import glob
|
|
|
|
# import all test_*.py files in directory
|
|
modules = glob.glob(dirname(__file__)+"/test_*.py")
|
|
__all__ = [basename(f)[:-3] for f in modules if isfile(f)]
|