From 8fb29a32ca92687d9f0de28cdd4d56b8fc3b3597 Mon Sep 17 00:00:00 2001 From: Oliver Holworthy <1216955+oliverholworthy@users.noreply.github.com> Date: Fri, 2 Jun 2023 20:08:46 +0100 Subject: [PATCH] Combine install to one line --- tox.ini | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/tox.ini b/tox.ini index aac818206b..97b368d208 100644 --- a/tox.ini +++ b/tox.ini @@ -41,12 +41,14 @@ deps = pytest pytest-cov commands = - python -m pip install rmm-cu11=={env:RAPIDS_VERSION} cudf-cu11=={env:RAPIDS_VERSION} dask-cudf-cu11=={env:RAPIDS_VERSION} --extra-index-url=https://pypi.nvidia.com - python -m pip install --upgrade \ - git+https://github.com/NVIDIA-Merlin/core.git@{env:MERLIN_BRANCH:main} \ - git+https://github.com/NVIDIA-Merlin/dataloader.git@{env:MERLIN_BRANCH:main} \ - git+https://github.com/NVIDIA-Merlin/models.git@{env:MERLIN_BRANCH:main} \ - git+https://github.com/NVIDIA-Merlin/core.git@{env:MERLIN_BRANCH:main} + python -m pip install \ + cudf-cu11=={env:RAPIDS_VERSION} dask-cudf-cu11=={env:RAPIDS_VERSION} \ + git+https://github.com/NVIDIA-Merlin/core.git@{env:MERLIN_BRANCH:main} \ + git+https://github.com/NVIDIA-Merlin/dataloader.git@{env:MERLIN_BRANCH:main} \ + git+https://github.com/NVIDIA-Merlin/models.git@{env:MERLIN_BRANCH:main} \ + git+https://github.com/NVIDIA-Merlin/core.git@{env:MERLIN_BRANCH:main} \ + --extra-index-url=https://pypi.nvidia.com + python -m pytest --cov-report term --cov merlin -rxs tests/unit [testenv:test-merlin]