You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
378 B
15 lines
378 B
# coding: utf-8
|
|
from __future__ import unicode_literals, division, absolute_import, print_function
|
|
|
|
import sys
|
|
import unittest
|
|
|
|
from . import test_classes
|
|
|
|
|
|
suite = unittest.TestSuite()
|
|
loader = unittest.TestLoader()
|
|
for test_class in test_classes():
|
|
suite.addTest(loader.loadTestsFromTestCase(test_class))
|
|
unittest.TextTestRunner(stream=sys.stdout, verbosity=2).run(suite)
|