Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion ci/test/notebooks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,23 @@ set -o pipefail
export LIBCUDF_KERNEL_CACHE_PATH=${WORKSPACE}/.jitcache

source /opt/conda/bin/activate rapids

# PyTorch is intentionally excluded from our Docker images due
# to its size, but some notebooks still depend on it.
case "${CUDA_VER}" in
"10.1" | "10.2")
conda install -y -c pytorch pytorch
;;
*)
echo "Unsupported CUDA version for pytorch."
echo "Not installing pytorch."
;;
esac


env
/test.sh 2>&1 | tee nbtest.log
EXITCODE=$?
python /rapids/utils/nbtestlog2junitxml.py nbtest.log

exit ${EXITCODE}
exit ${EXITCODE}
1 change: 1 addition & 0 deletions conda/recipes/rapids-notebook-env/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ requirements:
- cython {{ cython_version }}
- dask-labextension
- dask-ml
- filterpy
- holoviews
- ipython {{ ipython_version }}
- jupyter-server-proxy
Expand Down