mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-13 10:17:43 +08:00
12 lines
258 B
Python
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)
|