mirror of
https://github.com/fergalmoran/picard.git
synced 2026-01-03 15:13:57 +00:00
11 lines
231 B
Python
11 lines
231 B
Python
import glob
|
|
import os.path
|
|
|
|
import sip
|
|
|
|
sip.setapi("QString", 2)
|
|
sip.setapi("QVariant", 2)
|
|
|
|
for filename in glob.glob(os.path.join(os.path.dirname(__file__), "test_*.py")):
|
|
__import__("test." + os.path.basename(filename)[:-3])
|