mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-26 01:27:07 +00: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)
|