From 48756f670f6df6c855f11e72f2c56efdd806042e Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Tue, 6 Feb 2024 18:29:39 -0600 Subject: [PATCH] Ensure that `ctest` is called with `--no-tests=error`. --- ci/test_cpp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test_cpp.sh b/ci/test_cpp.sh index 3bf915e0a..768756092 100755 --- a/ci/test_cpp.sh +++ b/ci/test_cpp.sh @@ -40,7 +40,7 @@ rapids-logger "Run gtests" cd $CONDA_PREFIX/bin/gtests/librmm/ export GTEST_OUTPUT=xml:${RAPIDS_TESTS_DIR}/ -ctest -j20 --output-on-failure +ctest -j20 --output-on-failure --no-tests=error rapids-logger "Test script exiting with value: $EXITCODE" exit ${EXITCODE}