Lines Matching full:combiner
39 # Combiner is not able to pass results (even as None) to the previous
53 combiner = self._get_combiner(test.suite)
54 if not combiner:
55 print ('>>> Warning: There is no combiner for %s testsuite' %
58 return combiner.get_group_key(test)
82 suite, combiner = self._select_suite()
91 return combiner.combine('%s-%d' % (suite, self._current_num), sample)
94 """Returns pair (suite name, combiner)."""
101 combiner = self._combiners.get(suite.name)
102 if not combiner:
103 combiner = suite.get_test_combiner()
104 self._combiners[suite.name] = combiner
105 return combiner