Lines Matching refs:testlist
74 def get_required_plugins(self, testlist): argument
80 for t in testlist:
480 def prepare_run(pm, args, testlist): argument
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
808 testlist = []
813 testlist.append(t)
815 json.dump(testlist, outfile, indent=4)
819 def filter_tests_by_id(args, testlist): argument
825 if testlist and args.execute:
829 newlist = list(filter(lambda x: x['id'] in target_ids, testlist))
832 def filter_tests_by_category(args, testlist): argument
837 if args.category and testlist:
843 for tc in testlist: