2016-03-17 09:38:50 +01:00

13 lines
236 B
Python

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