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

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

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