(script_name: str, *args: str)
| 150 | |
| 151 | |
| 152 | def _exec_script(script_name: str, *args: str) -> None: |
| 153 | os.execv( |
| 154 | sys.executable, [sys.executable, str(_SCRIPTS_DIR / script_name)] + list(args) |
| 155 | ) |
| 156 | |
| 157 | |
| 158 | def _run_workflow_flow(cfg: dict) -> None: |
no outgoing calls
no test coverage detected