(self)
| 128 | ) |
| 129 | |
| 130 | def testGetRunsWithCreated(self): |
| 131 | self.assertListKeyEqual( |
| 132 | self.workflow.get_runs(created="2022-12-24"), |
| 133 | lambda r: r.id, |
| 134 | [3770390952], |
| 135 | ) |
| 136 | |
| 137 | def testCreateDispatchWithBranch(self): |
| 138 | dispatch_inputs = {"logLevel": "Warning", "message": "Log Message"} |
nothing calls this directly
no test coverage detected