(self)
| 154 | self.assertTrue(workflow.create_dispatch(ref_str, dispatch_inputs)) |
| 155 | |
| 156 | def testCreateDispatchForNonTriggerEnabled(self): |
| 157 | workflow = self.g.get_repo("wrecker/PyGithub").get_workflow("check.yml") |
| 158 | self.assertFalse(workflow.create_dispatch("main")) |
| 159 | |
| 160 | def testCreateDispatchException(self): |
| 161 | workflow = self.g.get_repo("test-org/test-repo").get_workflow("workflow-with-params.yaml") |
nothing calls this directly
no test coverage detected