2020-04-16 23:06:57 +02:00

19 lines
402 B
Python

import subprocess
import glob
import six
import os
tests = sorted(glob.glob('[A-Za-z]*.py'))
excludes = ['runtests.py']
output_dir = os.path.join(os.path.dirname(__file__), 'output')
if not os.path.exists(output_dir):
os.mkdir(output_dir)
for test in tests:
if test not in excludes:
six.print_('%s ...' % test)
subprocess.call(['python', './%s' % test])
six.print_('Done.')