summaryrefslogtreecommitdiff
path: root/test/testall.py
blob: 4e7106645789544a90c19e3b9a0e306cbd42be7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import unittest
import sys, os.path
TESTDIR = os.path.dirname(os.path.abspath(__file__))
DISTDIR = os.path.dirname(TESTDIR)
sys.path.insert(0, TESTDIR)
sys.path.insert(0, DISTDIR)

from test_templates import suite as suite1
from test_routes import suite as suite2

suite = unittest.TestSuite()
suite.addTest(suite1)
suite.addTest(suite2)

if __name__ == '__main__':
    unittest.TextTestRunner(verbosity=2).run(suite)