(venv_dir)
| 102 | |
| 103 | |
| 104 | def create_virtualenv(venv_dir): |
| 105 | # Use Python 3's builtin venv command |
| 106 | LOG.info("Creating python3 virtualenv") |
| 107 | python_cmd = download_toolchain_python() |
| 108 | exec_cmd([python_cmd, "-m" "venv", venv_dir]) |
| 109 | return |
| 110 | |
| 111 | |
| 112 | def exec_cmd(args, **kwargs): |
no test coverage detected