Skip to content

Commit

Permalink
Ensure that ctest is called with --no-tests=error. (#535)
Browse files Browse the repository at this point in the history
This PR ensures that all calls to `ctest` include the flag `--no-tests=error`. See rapidsai/build-planning#18.

Authors:
  - Bradley Dice (https://github.com/bdice)
  - Kyle Edwards (https://github.com/KyleFromNVIDIA)

Approvers:
  - Kyle Edwards (https://github.com/KyleFromNVIDIA)

URL: #535
  • Loading branch information
bdice authored Feb 7, 2024
1 parent e8e5bdb commit 46ad1bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/test_cpp.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright (c) 2023, NVIDIA CORPORATION.
# Copyright (c) 2023-2024, NVIDIA CORPORATION.

set -euo pipefail

Expand Down Expand Up @@ -35,7 +35,7 @@ EXITCODE=0
trap "EXITCODE=1" ERR
set +e

ctest -j20 --schedule-random --output-on-failure
ctest -j20 --schedule-random --output-on-failure --no-tests=error

rapids-logger "Test script exiting with value: $EXITCODE"
exit ${EXITCODE}

0 comments on commit 46ad1bb

Please sign in to comment.