(self)
| 358 | shutil.rmtree(path) # Remove dir recursively. |
| 359 | |
| 360 | def _make_temp_path(self): |
| 361 | # Make a temp path as db_path. |
| 362 | with tempfile.NamedTemporaryFile() as f: |
| 363 | temp_path = f.name |
| 364 | self.temp_paths.append(temp_path) |
| 365 | return temp_path |
| 366 | |
| 367 | @staticmethod |
| 368 | def _build_source_reader(ws, size): |
no test coverage detected