(venvPath: string)
| 143 | } |
| 144 | |
| 145 | export function getVenvPythonBin(venvPath: string) { |
| 146 | return join(getVenvBinDir(venvPath), isWin ? 'python.exe' : 'python'); |
| 147 | } |
| 148 | |
| 149 | export async function runPyprojectScript( |
| 150 | workPath: string, |
no test coverage detected