mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2024-11-14 17:40:24 -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)
|