aboutsummaryrefslogtreecommitdiffstats
path: root/test/runtests.py
blob: acef86641b2f236113c1df1c116bd313cc48139c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
try:
    import lvc
except ImportError:
    import os.path
    import sys
    lvc_path = os.path.join(os.path.dirname(__file__), '..')
    sys.path.append(lvc_path)

from test_video import *
from test_converter import *
from test_conversion import *
from test_utils import *

if __name__ == "__main__":
    import unittest
    from lvc.widgets import initialize
    initialize(None)
    unittest.main()