From 624e0f82846bcf46df0c8c341e27dfac82722823 Mon Sep 17 00:00:00 2001 From: Joseph Nke <76006812+jnke2016@users.noreply.github.com> Date: Tue, 17 Oct 2023 17:16:21 -0500 Subject: [PATCH] Temporarily disable mg testing (#3940) This PR temporarily disables single-GPU "MG" tests in CI until the dask related transient failures are resolved. The PR to re-enable them, intended to block the 23.12 release, is [here](https://github.com/rapidsai/cugraph/pull/3941). Authors: - Joseph Nke (https://github.com/jnke2016) Approvers: - Rick Ratzel (https://github.com/rlratzel) - Ray Douglass (https://github.com/raydouglass) URL: https://github.com/rapidsai/cugraph/pull/3940 --- ci/test_python.sh | 3 ++- ci/test_wheel.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ci/test_python.sh b/ci/test_python.sh index c7687396ff0..1690ce2f15b 100755 --- a/ci/test_python.sh +++ b/ci/test_python.sh @@ -63,6 +63,7 @@ pytest \ tests popd +# FIXME: TEMPORARILY disable single-GPU "MG" testing rapids-logger "pytest cugraph" pushd python/cugraph/cugraph DASK_WORKER_DEVICES="0" \ @@ -78,7 +79,7 @@ pytest \ --cov=cugraph \ --cov-report=xml:"${RAPIDS_COVERAGE_DIR}/cugraph-coverage.xml" \ --cov-report=term \ - -k "not test_property_graph_mg" \ + -k "not _mg" \ tests popd diff --git a/ci/test_wheel.sh b/ci/test_wheel.sh index c4adb638437..28f59f0209e 100755 --- a/ci/test_wheel.sh +++ b/ci/test_wheel.sh @@ -21,9 +21,10 @@ arch=$(uname -m) if [[ "${arch}" == "aarch64" && ${RAPIDS_BUILD_TYPE} == "pull-request" ]]; then python ./ci/wheel_smoke_test_${package_name}.py else + # FIXME: TEMPORARILY disable single-GPU "MG" testing RAPIDS_DATASET_ROOT_DIR=`pwd`/datasets \ DASK_DISTRIBUTED__SCHEDULER__WORKER_TTL="1000s" \ DASK_DISTRIBUTED__COMM__TIMEOUTS__CONNECT="1000s" \ DASK_CUDA_WAIT_WORKERS_MIN_TIMEOUT="1000s" \ - python -m pytest ./python/${package_name}/${python_package_name}/tests + python -m pytest -k "not _mg" ./python/${package_name}/${python_package_name}/tests fi