aboutsummaryrefslogtreecommitdiff
path: root/tests/__init__.py
blob: 880a14e0db3c6381efec21a09f7f7b87ae43c54b (plain)
1
2
3
4
5
6
7
8
from hwpack.tests import test_suite as hwpack_suite
from linaro_media_create.tests import test_suite as media_create_suite


def test_suite():
    suite = hwpack_suite()
    suite.addTests(media_create_suite())
    return suite