bazarr/libs/enzyme/tests/__init__.py

13 lines
258 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2018-11-01 00:08:29 +08:00
from . import test_mkv, test_parsers, test_subtitle
import unittest
2018-11-01 00:08:29 +08:00
suite = unittest.TestSuite([test_mkv.suite(), test_parsers.suite(), test_subtitle.suite()])
if __name__ == '__main__':
unittest.TextTestRunner().run(suite)