(runtimePython, args, options = {})
| 3081 | } |
| 3082 | |
| 3083 | function runPythonCli(runtimePython, args, options = {}) { |
| 3084 | const env = { |
| 3085 | ...process.env, |
| 3086 | DEEPSCIENTIST_REPO_ROOT: repoRoot, |
| 3087 | ...(options.env || {}), |
| 3088 | }; |
| 3089 | return runSync(runtimePython, ['-m', 'deepscientist.cli', ...args], { ...options, env }); |
| 3090 | } |
| 3091 | |
| 3092 | function normalizePythonCliArgs(args, home) { |
| 3093 | const normalized = []; |
no test coverage detected