(self)
| 1472 | ) |
| 1473 | |
| 1474 | def testGetWorkflowRunsCreated(self): |
| 1475 | self.assertListKeyEqual( |
| 1476 | self.g.get_repo("PyGithub/PyGithub").get_workflow_runs(created="2022-12-24"), |
| 1477 | lambda r: r.id, |
| 1478 | [3770390952], |
| 1479 | ) |
| 1480 | |
| 1481 | def testGetSourceImport(self): |
| 1482 | import_repo = self.g.get_user("brix4dayz").get_repo("source-import-test") |
nothing calls this directly
no test coverage detected