(self)
| 1461 | self.assertListKeyEqual(workflows, lambda w: w.name, ["check", "Publish to PyPI"]) |
| 1462 | |
| 1463 | def testGetWorkflowId(self): |
| 1464 | workflows = self.g.get_repo("PyGithub/PyGithub").get_workflow("1122712") |
| 1465 | self.assertEqual(workflows.id, 1122712) |
| 1466 | |
| 1467 | def testGetWorkflowRuns(self): |
| 1468 | self.assertListKeyEqual( |
nothing calls this directly
no test coverage detected