Skip to content

Commit

Permalink
Temporarily disable mg testing (rapidsai#3940)
Browse files Browse the repository at this point in the history
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](rapidsai#3941).

Authors:
  - Joseph Nke (https://github.com/jnke2016)

Approvers:
  - Rick Ratzel (https://github.com/rlratzel)
  - Ray Douglass (https://github.com/raydouglass)

URL: rapidsai#3940
  • Loading branch information
jnke2016 authored and divyegala committed Oct 18, 2023
1 parent f5764d7 commit 624e0f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ci/test_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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" \
Expand All @@ -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

Expand Down
3 changes: 2 additions & 1 deletion ci/test_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 624e0f8

Please sign in to comment.