(self)
| 169 | self.assertTrue(workflow.disable()) |
| 170 | |
| 171 | def testDisabledWhenAlreadyDisabled(self): |
| 172 | workflow = self.g.get_repo("nickrmcclorey/PyGithub").get_workflow("ci.yml") |
| 173 | self.assertFalse(workflow.disable()) |
| 174 | |
| 175 | def testEnable(self): |
| 176 | workflow = self.g.get_repo("nickrmcclorey/PyGithub").get_workflow("ci.yml") |
nothing calls this directly
no test coverage detected