1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-26 01:27:07 +00:00
bazarr/libs/enzyme/tests/__init__.py
2018-10-31 17:08:29 +01:00

12 lines
258 B
Python

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