(self)
| 141 | self.assertTrue(workflow.create_dispatch(branch, dispatch_inputs)) |
| 142 | |
| 143 | def testCreateDispatchWithTag(self): |
| 144 | dispatch_inputs = {"logLevel": "Warning", "message": "Log Message"} |
| 145 | workflow = self.g.get_repo("wrecker/PyGithub").get_workflow("manual_dispatch.yml") |
| 146 | tags = self.g.get_repo("wrecker/PyGithub").get_tags() |
| 147 | tag = [t for t in tags if t.name == "workflow_dispatch_tag"].pop() |
| 148 | self.assertTrue(workflow.create_dispatch(tag, dispatch_inputs)) |
| 149 | |
| 150 | def testCreateDispatchWithString(self): |
| 151 | dispatch_inputs = {"logLevel": "Warning", "message": "Log Message"} |
nothing calls this directly
no test coverage detected