(steps, variables, connection)
| 53 | |
| 54 | |
| 55 | async def execute_steps(steps, variables, connection): |
| 56 | for step in steps: |
| 57 | if 'loop' in step: |
| 58 | await execute_loop(step['loop'], variables, connection) |
| 59 | else: |
| 60 | await execute_step(step, variables, connection) |
| 61 | |
| 62 | |
| 63 | async def execute_loop(loop_def, variables, connection): |
no test coverage detected
searching dependent graphs…