(self, current_path, path, arch, mode)
| 158 | additional) |
| 159 | |
| 160 | def ListTests(self, current_path, path, arch, mode): |
| 161 | result = super(ParallelTestConfiguration, self).ListTests( |
| 162 | current_path, path, arch, mode) |
| 163 | for tst in result: |
| 164 | tst.parallel = True |
| 165 | return result |
| 166 | |
| 167 | class AddonTestConfiguration(SimpleTestConfiguration): |
| 168 | def __init__(self, context, root, section, additional=None): |