(self)
| 135 | ) |
| 136 | |
| 137 | def testCreateDispatchWithBranch(self): |
| 138 | dispatch_inputs = {"logLevel": "Warning", "message": "Log Message"} |
| 139 | workflow = self.g.get_repo("wrecker/PyGithub").get_workflow("manual_dispatch.yml") |
| 140 | branch = self.g.get_repo("wrecker/PyGithub").get_branch("workflow_dispatch_branch") |
| 141 | self.assertTrue(workflow.create_dispatch(branch, dispatch_inputs)) |
| 142 | |
| 143 | def testCreateDispatchWithTag(self): |
| 144 | dispatch_inputs = {"logLevel": "Warning", "message": "Log Message"} |
nothing calls this directly
no test coverage detected