From 054731df309959f04889cd44f9c0b3c04f833136 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Tue, 5 Mar 2024 10:03:18 -0800 Subject: [PATCH] Ensure that `ctest` is called with `--no-tests=error`. (#2163) This PR ensures that all calls to `ctest` include the flag `--no-tests=error`. See https://github.com/rapidsai/build-planning/issues/18. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - Jake Awe (https://github.com/AyodeAwe) URL: https://github.com/rapidsai/raft/pull/2163 --- ci/run_ctests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/run_ctests.sh b/ci/run_ctests.sh index f6d0ef26ef..3086c39e8c 100755 --- a/ci/run_ctests.sh +++ b/ci/run_ctests.sh @@ -6,4 +6,4 @@ set -euo pipefail # Support customizing the ctests' install location cd "${INSTALL_PREFIX:-${CONDA_PREFIX:-/usr}}/bin/gtests/libraft/" -ctest --output-on-failure "$@" +ctest --output-on-failure --no-tests=error "$@"