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


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