mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-02-09 05:26:30 +08:00
15 lines
335 B
Python
15 lines
335 B
Python
import unittest
|
|
|
|
from tests.test_metainfo import MetaInfoTest
|
|
|
|
if __name__ == '__main__':
|
|
suite = unittest.TestSuite()
|
|
|
|
# 测试名称识别
|
|
suite.addTest(MetaInfoTest('test_metainfo'))
|
|
suite.addTest(MetaInfoTest('test_emby_format_ids'))
|
|
|
|
# 运行测试
|
|
runner = unittest.TextTestRunner()
|
|
runner.run(suite)
|