aboutsummaryrefslogtreecommitdiffstats
path: root/test/runtests.py
blob: 15c99ab44d4ed8aa16adae25e997d7edcfe54aa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from test_video import *
from test_converter import *
from test_conversion import *
from test_utils import *

try:
    import lvc
except ImportError:
    import os.path, sys
    lvc_path = os.path.join(os.path.dirname(__file__), '..')
    sys.path.append(lvc_path)

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