Lines Matching refs:testlist
66 def get_required_plugins(self, testlist): argument
72 for t in testlist:
439 testlist = filtered_tests
440 tcount = len(testlist)
451 pm.call_pre_suite(tcount, [tidx['id'] for tidx in testlist])
467 for tidx in testlist:
515 for tidx in testlist[count - 1:]:
547 testlist = json.load(test_data, object_pairs_hook=OrderedDict)
550 testlist = list()
552 idlist = get_id_list(testlist)
554 for k in testlist:
556 return testlist
690 testlist = []
695 testlist.append(t)
697 json.dump(testlist, outfile, indent=4)
701 def filter_tests_by_id(args, testlist): argument
707 if testlist and args.execute:
711 newlist = list(filter(lambda x: x['id'] in target_ids, testlist))
714 def filter_tests_by_category(args, testlist): argument
719 if args.category and testlist:
725 for tc in testlist: