(self)
| 83 | repo.get_artifact(artifact_id) |
| 84 | |
| 85 | def testDelete(self): |
| 86 | artifact_id = 396724439 |
| 87 | repo_name = "lexa/PyGithub" |
| 88 | repo = self.g.get_repo(repo_name) |
| 89 | artifact = repo.get_artifact(artifact_id) |
| 90 | self.assertTrue(artifact.delete()) |
| 91 | with self.assertRaises(github.GithubException): |
| 92 | repo.get_artifact(artifact_id) |
nothing calls this directly
no test coverage detected