(self)
| 81 | |
| 82 | class Scenario: |
| 83 | def bootstrap(self) -> list[ActionOrFactory]: |
| 84 | return [ |
| 85 | KafkaStart, |
| 86 | CockroachStart, |
| 87 | BlobStoreStart, |
| 88 | MzStart, |
| 89 | StoragedStart, |
| 90 | BalancerdStart, |
| 91 | IcebergStart, |
| 92 | ] |
| 93 | |
| 94 | def actions_with_weight(self) -> dict[ActionOrFactory, float]: |
| 95 | raise RuntimeError |