mirror of
https://github.com/fergalmoran/picard.git
synced 2025-12-27 19:57:37 +00:00
7 lines
168 B
Python
7 lines
168 B
Python
import glob
|
|
import os.path
|
|
|
|
|
|
for filename in glob.glob(os.path.join(os.path.dirname(__file__), "test_*.py")):
|
|
__import__("test." + os.path.basename(filename)[:-3])
|