Duplicates current suite allowing for environment updates.
(self, name, **envs)
| 296 | self.timeout_minutes = 120 |
| 297 | |
| 298 | def copy(self, name, **envs): |
| 299 | """Duplicates current suite allowing for environment updates.""" |
| 300 | v = dict() |
| 301 | v.update(self.envs) |
| 302 | v.update(envs) |
| 303 | ret = Suite(name, **v) |
| 304 | ret.shard_at_concurrency = self.shard_at_concurrency |
| 305 | ret.sharding_variable = self.sharding_variable |
| 306 | ret.timeout_minutes = self.timeout_minutes |
| 307 | return ret |
| 308 | |
| 309 | def exhaustive(self): |
| 310 | """Returns an "exhaustive" copy of the suite.""" |
no test coverage detected