aboutsummaryrefslogtreecommitdiff
path: root/tests/__init__.py
blob: 56f6d603ab519368fcae5eb68e09047678031e45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import unittest


def test_suite():
    module_names = [
        'tests.test_click_through_license.TestLicense',
        'tests.test_publish_to_snapshots.TestSnapshotsPublisher',
        'tests.test_php_unit.PhpUnitTest',
        ]
    loader = unittest.TestLoader()
    suite = loader.loadTestsFromNames(module_names)
    return suite