2016-08-09 16:47:35 +02:00

14 lines
259 B
Python

import subprocess
import glob
import six
tests = glob.glob('[A-Za-z]*.py')
excludes = ['runtests.py']
for test in tests:
if test not in excludes:
six.print_('%s ...' % test)
subprocess.call(['python','./%s' % test])
six.print_('Done.')