diff options
author | Jesús Eduardo <heckyel@hyperbola.info> | 2018-01-17 19:29:45 -0500 |
---|---|---|
committer | Jesús Eduardo <heckyel@hyperbola.info> | 2018-01-17 19:29:45 -0500 |
commit | 648d3a6f1ec6a6a48cdb05832b52190cf282d3f6 (patch) | |
tree | 15c5067b1f862cf6e902fec3c8ac53b3b416cc66 /test/runtests.py | |
parent | c6791d41d97f8c27fe966d0d716cf4c85d294da5 (diff) | |
download | librevideoconverter-648d3a6f1ec6a6a48cdb05832b52190cf282d3f6.tar.lz librevideoconverter-648d3a6f1ec6a6a48cdb05832b52190cf282d3f6.tar.xz librevideoconverter-648d3a6f1ec6a6a48cdb05832b52190cf282d3f6.zip |
pep8 en test/runtests.py
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 83c75f3..15c99ab 100644 --- a/test/runtests.py +++ b/test/runtests.py @@ -1,3 +1,8 @@ +from test_video import * +from test_converter import * +from test_conversion import * +from test_utils import * + try: import lvc except ImportError: @@ -5,11 +10,6 @@ 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 |