From af1a2f7f20000796965653a8cb3d799cefd0c58d Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Wed, 20 Nov 2024 18:42:17 +0100 Subject: [PATCH] Disable UCXX tests in CI (#1406) Temporarily disable UCXX tests in CI due to some non-deterministic failures during code freeze phase. They will be reenabled after 24.12 release. Authors: - Peter Andreas Entschev (https://github.com/pentschev) Approvers: - Jake Awe (https://github.com/AyodeAwe) URL: https://github.com/rapidsai/dask-cuda/pull/1406 --- ci/test_python.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/test_python.sh b/ci/test_python.sh index 18dd88cf..319efef2 100755 --- a/ci/test_python.sh +++ b/ci/test_python.sh @@ -62,7 +62,7 @@ timeout 90m pytest \ --cov=dask_cuda \ --cov-report=xml:"${RAPIDS_COVERAGE_DIR}/dask-cuda-coverage.xml" \ --cov-report=term \ - tests + tests -k "not ucxx" popd rapids-logger "pytest explicit-comms (legacy dd)" @@ -83,7 +83,7 @@ timeout 60m pytest \ --cov=dask_cuda \ --cov-report=xml:"${RAPIDS_COVERAGE_DIR}/dask-cuda-coverage-legacy.xml" \ --cov-report=term \ - tests/test_explicit_comms.py + tests/test_explicit_comms.py -k "not ucxx" popd rapids-logger "Run local benchmark (dask-expr)"