diff options
author | Jesús <heckyel@hyperbola.info> | 2020-06-01 20:25:35 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-06-01 20:25:35 -0500 |
commit | 9d221d5af918803180f74cd9fcbf107d38b068de (patch) | |
tree | 9d2b61b17c2a6305e9c62aa6f13e89826bcccfc2 /test/runtests.py | |
parent | 507463cf0d147415d84990d9fd7eaff4aa6d7bd0 (diff) | |
download | librevideoconverter-9d221d5af918803180f74cd9fcbf107d38b068de.tar.lz librevideoconverter-9d221d5af918803180f74cd9fcbf107d38b068de.tar.xz librevideoconverter-9d221d5af918803180f74cd9fcbf107d38b068de.zip |
fix test
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 |