(self, loader)
| 42 | ctx.master.shutdown() |
| 43 | |
| 44 | def load(self, loader): |
| 45 | loader.add_option( |
| 46 | "benchmark_save_path", |
| 47 | str, |
| 48 | "/tmp/profile", |
| 49 | "Destination for the .prof and .bench result files", |
| 50 | ) |
| 51 | ctx.options.update( |
| 52 | mode="reverse:http://devd.io:10001", |
| 53 | ) |
| 54 | self.pr.enable() |
| 55 | |
| 56 | def running(self): |
| 57 | if not self.started: |
no test coverage detected