import subprocess
import glob
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:
        print("%s ..." % test)
        subprocess.call(["python3", "./%s" % test])

print("Done.")
