Lines Matching refs:testlist
66 def get_required_plugins(self, testlist): argument
72 for t in testlist:
452 testlist = filtered_tests
453 tcount = len(testlist)
464 pm.call_pre_suite(tcount, [tidx['id'] for tidx in testlist])
480 for tidx in testlist:
528 for tidx in testlist[count - 1:]:
560 testlist = json.load(test_data, object_pairs_hook=OrderedDict)
563 testlist = list()
565 idlist = get_id_list(testlist)
567 for k in testlist:
569 return testlist
703 testlist = []
708 testlist.append(t)
710 json.dump(testlist, outfile, indent=4)
714 def filter_tests_by_id(args, testlist): argument
720 if testlist and args.execute:
724 newlist = list(filter(lambda x: x['id'] in target_ids, testlist))
727 def filter_tests_by_category(args, testlist): argument
732 if args.category and testlist:
738 for tc in testlist: