mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-10 19:46:36 +03:00
24 lines
633 B
Python
24 lines
633 B
Python
import unittest
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
from unittests import CryptoTests, ParserTests, TLTests, UtilsTests, NetworkTests
|
|
test_classes = [CryptoTests, ParserTests, TLTests, UtilsTests]
|
|
|
|
network = input('Run network tests (y/n)?: ').lower() == 'y'
|
|
if network:
|
|
test_classes.append(NetworkTests)
|
|
|
|
loader = unittest.TestLoader()
|
|
|
|
suites_list = []
|
|
for test_class in test_classes:
|
|
suite = loader.loadTestsFromTestCase(test_class)
|
|
suites_list.append(suite)
|
|
|
|
big_suite = unittest.TestSuite(suites_list)
|
|
|
|
runner = unittest.TextTestRunner()
|
|
results = runner.run(big_suite)
|