Skip to content

Commit

Permalink
Add timeouts to Dask tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pentschev committed May 15, 2024
1 parent 6be59e8 commit 89484c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ci/run_cuml_dask_pytests.sh
Expand Up @@ -5,10 +5,10 @@
cd "$(dirname "$(realpath "${BASH_SOURCE[0]}")")"/../python/cuml/tests/dask

rapids-logger "pytest cuml-dask (No UCX-Py/UCXX)"
python -m pytest --cache-clear "$@" .
timeout 2h python -m pytest --cache-clear "$@" .

rapids-logger "pytest cuml-dask (UCX-Py only)"
python -m pytest --cache-clear --run_ucx "$@" .
timeout 5m python -m pytest --cache-clear --run_ucx "$@" .

rapids-logger "pytest cuml-dask (UCXX only)"
python -m pytest --cache-clear --run_ucxx "$@" .
timeout 5m python -m pytest --cache-clear --run_ucxx "$@" .

0 comments on commit 89484c3

Please sign in to comment.