Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/__main__.py
blob: 9b24e37f383384be82f033945a1acefe7bb2ecb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# sugar-lint: disable

import sys
from os.path import dirname, join, abspath

src_root = abspath(join(dirname(__file__), '..'))
sys.path.insert(0, src_root)

import tests

from units.__main__ import *
from integration.__main__ import *
#from regression.__main__ import *

if __name__ == '__main__':
    tests.main()