summaryrefslogtreecommitdiffstats
path: root/tests/old/__init__.py
blob: 53116416fe493e6adc3d5adabc0f4119d02eb21f (plain)
1
2
3
4
5
6
7
8
9
10
11
import os
import unittest

if __name__ == "__main__":
    os.chdir(os.path.dirname(__file__))
    print(os.getcwd())

    for path in os.listdir("."):
        if path.endswith(".py"):
            exec("from %s import *" % path[:-3])
    unittest.main()