Lines Matching refs:testlist
247 testlist = filtered_tests
248 tcount = len(testlist)
262 pm.call_pre_suite(tcount, [tidx['id'] for tidx in testlist])
285 for tidx in testlist:
320 for tidx in testlist[index - 1:]:
351 testlist = json.load(test_data, object_pairs_hook=OrderedDict)
354 testlist = list()
356 idlist = get_id_list(testlist)
358 for k in testlist:
360 return testlist
485 testlist = []
490 testlist.append(t)
492 json.dump(testlist, outfile, indent=4)
496 def filter_tests_by_id(args, testlist): argument
502 if testlist and args.execute:
506 newlist = list(filter(lambda x: x['id'] in target_ids, testlist))
509 def filter_tests_by_category(args, testlist): argument
514 if args.category and testlist:
520 for tc in testlist: