File size: 254 Bytes
859a779
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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()