Skip to content

Commit

Permalink
generate test dependencies and install in test_wheel.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
gforsyth committed Jan 6, 2025
1 parent 9ffd584 commit 6a613ce
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ci/test_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ set -eou pipefail

RAPIDS_PY_WHEEL_NAME="dask-cuda" RAPIDS_PY_WHEEL_PURE="1" rapids-download-wheels-from-s3 python ./dist

# Install cuda-suffixed dependencies b/c while `dask-cuda` has no cuda suffix, the test dependencies do
rapids-dependency-file-generator \
--output requirements \
--file-key "test_python" \
--matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION};cuda_suffixed=true" \
| tee /tmp/requirements-test.txt

rapids-logger "Installing test dependencies"
python -m pip install -v --prefere-binary -r /tmp/requirements-test.txt

# echo to expand wildcard before adding `[extra]` requires for pip
python -m pip install $(echo ./dist/dask_cuda*.whl)

Expand Down

0 comments on commit 6a613ce

Please sign in to comment.