Skip to content

Commit e0ab818

Browse files
Skip all known pytest failures in pandas-tests (#18641)
Resolves: #18569 This PR enables strict pass/fail for `pandas-tests` job by skipping all know failures. Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) - Bradley Dice (https://github.com/bdice) Approvers: - Bradley Dice (https://github.com/bdice) URL: #18641
1 parent 075f800 commit e0ab818

File tree

2 files changed

+520
-2
lines changed

2 files changed

+520
-2
lines changed

ci/cudf_pandas_scripts/pandas-tests/run.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55

66
set -euo pipefail
77

8+
EXITCODE=0
9+
trap "EXITCODE=1" ERR
10+
set +e
11+
812
PANDAS_TESTS_BRANCH=${1}
913
RAPIDS_FULL_VERSION=$(<./VERSION)
1014
rapids-logger "Running Pandas tests using $PANDAS_TESTS_BRANCH branch and rapids-version $RAPIDS_FULL_VERSION"
@@ -43,3 +47,5 @@ RAPIDS_ARTIFACTS_DIR=${RAPIDS_ARTIFACTS_DIR:-"${PWD}/artifacts"}
4347
mkdir -p "${RAPIDS_ARTIFACTS_DIR}"
4448
mv pandas-testing/"${SUMMARY_FILE_NAME}" "${RAPIDS_ARTIFACTS_DIR}"/
4549
rapids-upload-to-s3 "${RAPIDS_ARTIFACTS_DIR}"/"${SUMMARY_FILE_NAME}" "${RAPIDS_ARTIFACTS_DIR}"
50+
rapids-logger "Test script exiting with value: $EXITCODE"
51+
exit ${EXITCODE}

0 commit comments

Comments
 (0)