bazarr/libs/enzyme/tests/__init__.py

13 lines
258 B
Python
Raw Normal View History

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