Lines Matching defs:testlist
74 def get_required_plugins(self, testlist):
80 for t in testlist:
480 def prepare_run(pm, args, testlist):
481 tcount = len(testlist)
486 pm.call_pre_suite(tcount, testlist)
511 testlist = filtered_tests
512 tcount = len(testlist)
520 for tidx in testlist:
568 for tidx in testlist[count - 1:]:
661 testlist = json.load(test_data, object_pairs_hook=OrderedDict)
664 testlist = list()
666 idlist = get_id_list(testlist)
668 for k in testlist:
670 return testlist
811 testlist = []
816 testlist.append(t)
818 json.dump(testlist, outfile, indent=4)
822 def filter_tests_by_id(args, testlist):
824 Remove tests from testlist that are not in the named id list.
828 if testlist and args.execute:
832 newlist = list(filter(lambda x: x['id'] in target_ids, testlist))
835 def filter_tests_by_category(args, testlist):
837 Remove tests from testlist that are not in a named category.
840 if args.category and testlist:
846 for tc in testlist: