(self)
| 670 | self.configs[path].extend(targets, tests) |
| 671 | |
| 672 | def process_global_actions(self): |
| 673 | have_configs = len(self.configs) > 0 |
| 674 | for action in self.global_actions: |
| 675 | impact = ACTIONS[action] |
| 676 | if (have_configs): |
| 677 | for c in self.configs: |
| 678 | self.configs[c].extend(**impact) |
| 679 | else: |
| 680 | self.populate_configs(DEFAULT_ARCHES, DEFAULT_MODES, **impact) |
| 681 | |
| 682 | def maybe_parse_builddir(self, argstring): |
| 683 | outdir_prefix = str(OUTDIR_BASENAME) + os.path.sep |
no test coverage detected