def test_info_tests( self, test_names, branches, start, end, show_info, show_results, show_durations, show_tasks, show_bugs, verbose, ): import testinfo ti = testinfo.TestInfoTests(verbose) ti.report( test_names, branches, start, end, show_info, show_results, show_durations, show_tasks, show_bugs, )
def test_info_tests( self, test_names, start, end, show_info, show_bugs, verbose, ): import testinfo ti = testinfo.TestInfoTests(verbose) ti.report( test_names, start, end, show_info, show_bugs, )