Skip to content

Commit

Permalink
Merge branch 'branch-24.06' into expr-explicit-comms
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzamora authored Apr 3, 2024
2 parents 48e6615 + 21482c5 commit 5dcd2f3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ci/test_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ rapids-logger "Check GPU usage"
nvidia-smi

EXITCODE=0
trap "EXITCODE=1" ERR
set_exit_code() {
EXITCODE=$?
rapids-logger "Test failed with error ${EXITCODE}"
}
trap set_exit_code ERR
set +e

rapids-logger "pytest dask-cuda (dask-expr)"
Expand Down Expand Up @@ -110,5 +114,5 @@ python dask_cuda/benchmarks/local_cudf_shuffle.py \
--runs 1 \
--backend explicit-comms

rapids-logger "Test script exiting with value: $EXITCODE"
rapids-logger "Test script exiting with latest error code: $EXITCODE"
exit ${EXITCODE}

0 comments on commit 5dcd2f3

Please sign in to comment.