(self)
| 76 | ) |
| 77 | |
| 78 | def testGetNonexistentArtifact(self): |
| 79 | artifact_id = 396724437 |
| 80 | repo_name = "lexa/PyGithub" |
| 81 | repo = self.g.get_repo(repo_name) |
| 82 | with self.assertRaises(github.GithubException): |
| 83 | repo.get_artifact(artifact_id) |
| 84 | |
| 85 | def testDelete(self): |
| 86 | artifact_id = 396724439 |
nothing calls this directly
no test coverage detected