Lines Matching refs:testgroups
658 self.testgroups = {}
684 for key in sorted(self.testgroups.keys()):
685 s += '%s%s' % (self.testgroups[key].__str__(), '\n')
707 if dirname not in self.testgroups:
717 self.testgroups[dirname] = testgroup
718 self.testgroups[dirname].tests = sorted(filenames)
723 for group in list(self.testgroups.keys()):
725 del self.testgroups[group]
728 g = self.testgroups[group]
803 self.testgroups[section] = testgroup
845 for testgroup in sorted(self.testgroups.keys()):
847 config.set(testgroup, 'tests', self.testgroups[testgroup].tests)
851 getattr(self.testgroups[testgroup], prop))
875 list(self.testgroups.items()))
944 for testgroup in sorted(self.testgroups.keys()):
945 self.testgroups[testgroup].run(options)