diff options
Diffstat (limited to 'test/runtests.py')
-rw-r--r-- | test/runtests.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/runtests.py b/test/runtests.py index 15c99ab..83c75f3 100644 --- a/test/runtests.py +++ b/test/runtests.py @@ -1,8 +1,3 @@ -from test_video import * -from test_converter import * -from test_conversion import * -from test_utils import * - try: import lvc except ImportError: @@ -10,6 +5,11 @@ except ImportError: 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 |