Skip to content

UnitTest Integration

Dan Mushkevych edited this page Nov 12, 2015 · 4 revisions

launch.py is integrated with UnitTest framework. You have two options of how to run them:

  • From terminal: ./launch.py test
  • From Continuous Integration Tool (such as Jenkins): ./launch.py test -x -o unit_test_results.xml

List of unit cases is configurable and defined in settings.py:

test_cases = [
    'tests.test_time_helper',
    'tests.test_repeat_timer',
]

Developer should list his/her unit cases to enlist them into test plan.

Clone this wiki locally