~terceiro/lava-dispatcher/filter-ansi-color-codes-mwhudson-state-machine

11.2.1 by Loïc Minier
Add sample config tests -- obviously a bit weird as they test static data.
1
import unittest
2
637.1.36 by Neil Williams
PEP8 compliance.
3
11.2.1 by Loïc Minier
Add sample config tests -- obviously a bit weird as they test static data.
4
def test_suite():
384.2.2 by Antonio Terceiro
Add tests for the selection of client implementation
5
    module_names = [
645 by Antonio Terceiro
Filter out ANSI color escape sequences when reading input from child processes
6
        'lava_dispatcher.tests.test_utils',
384.2.2 by Antonio Terceiro
Add tests for the selection of client implementation
7
        'lava_dispatcher.tests.test_config',
396.2.1 by Antonio Terceiro
Merge device version support with latest trunk code
8
        'lava_dispatcher.tests.test_device_version',
384.2.2 by Antonio Terceiro
Add tests for the selection of client implementation
9
    ]
11.2.1 by Loïc Minier
Add sample config tests -- obviously a bit weird as they test static data.
10
    loader = unittest.TestLoader()
11
    return loader.loadTestsFromNames(module_names)