~salgado/linaro-image-tools/cmd-runner

1
2
3
4
5
6
7
8
from hwpack.tests import test_suite as hwpack_suite
from media_create.tests import test_suite as media_create_suite


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