aboutsummaryrefslogtreecommitdiffstats
path: root/test/runtests.py
blob: 83c75f30c2551f3a937cae809a49556e231747be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
try:
    import lvc
except ImportError:
    import os.path, 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()