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

from tests.test_click_through_license import *
from tests.test_publish_to_snapshots import *


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