mirror of
https://github.com/fergalmoran/picard.git
synced 2025-12-24 02:09:56 +00:00
6 lines
167 B
Python
6 lines
167 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])
|