(self)
| 51 | logger.warning(f'Failed to delete model {self.model_id}: {e}') |
| 52 | |
| 53 | def test_clone_repo(self): |
| 54 | Repository(self.model_dir, clone_from=self.model_id) |
| 55 | assert os.path.exists(os.path.join(self.model_dir, ModelFile.README)) |
| 56 | |
| 57 | def test_clone_public_model_without_token(self): |
| 58 | delete_credential() |
nothing calls this directly
no test coverage detected