(venv_dir)
| 256 | |
| 257 | |
| 258 | def install_adls_deps(venv_dir): |
| 259 | # The ADLS dependencies require that the OS is at least CentOS 6.7 or above, |
| 260 | # which is why we break this into a seperate step. If the target filesystem is |
| 261 | # ADLS, the expectation is that the dev environment is running at least CentOS 6.7. |
| 262 | if os.environ.get('TARGET_FILESYSTEM') == "adls": |
| 263 | if reqs_are_installed(venv_dir, ADLS_REQS_PATH): |
| 264 | LOG.debug("Skipping ADLS deps: matching adls-installed-requirements.txt found") |
| 265 | return True |
| 266 | cc = select_cc() |
| 267 | assert cc is not None |
| 268 | LOG.info("Installing ADLS packages into the python3 virtualenv") |
| 269 | exec_pip_install(venv_dir, ["-r", ADLS_REQS_PATH], cc=cc) |
| 270 | mark_reqs_installed(venv_dir, ADLS_REQS_PATH) |
| 271 | |
| 272 | |
| 273 | def install_gcovr_deps(venv_dir): |
no test coverage detected