(self)
| 98 | self.assertEqual(workflow.url, "/repos/PyGithub/PyGithub/actions/workflows/42") |
| 99 | |
| 100 | def testGetRunsWithNoArguments(self): |
| 101 | self.assertListKeyEqual( |
| 102 | self.workflow.get_runs(), |
| 103 | lambda r: r.id, |
| 104 | [109950033, 109168419, 108934155, 108817672], |
| 105 | ) |
| 106 | |
| 107 | def testGetRunsWithObjects(self): |
| 108 | sfdye = self.g.get_user("sfdye") |
nothing calls this directly
no test coverage detected