mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-02-14 01:43:23 +08:00
11 lines
218 B
Python
11 lines
218 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from . import test_mkv, test_parsers
|
||
|
import unittest
|
||
|
|
||
|
|
||
|
suite = unittest.TestSuite([test_mkv.suite(), test_parsers.suite()])
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.TextTestRunner().run(suite)
|