(self, build_vars)
| 50 | yield key, getattr(self, key) |
| 51 | |
| 52 | def ensure_vars(self, build_vars): |
| 53 | for var in build_vars: |
| 54 | if var not in self.keys: |
| 55 | raise Exception(INITIALIZATION_ERROR % var) |
| 56 | |
| 57 | def timeout_scalefactor(self, initial_factor): |
| 58 | """Increases timeout for slow build configurations.""" |