Skip to content

Commit

Permalink
Combine install to one line
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverholworthy committed Jun 2, 2023
1 parent fef5b4e commit 8fb29a3
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 8fb29a3

Please sign in to comment.