(self)
| 74 | self.logger.info(f"DBBench initialized with {len(self.dataset)} samples. Root dir: {self.db_root_dir}") |
| 75 | |
| 76 | def get_indices(self) -> List[SampleIndex]: |
| 77 | return list(range(len(self.dataset))) |
| 78 | |
| 79 | async def start_sample(self, index: int, session: Session) -> TaskSampleExecutionResult: |
| 80 | self.env_controller.loop = asyncio.get_running_loop() |
nothing calls this directly
no outgoing calls
no test coverage detected