mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-27 10:07:22 +00:00
10 lines
218 B
Python
10 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)
|