From a42d71ba86f7e98e0cf8118a4b83bfd10b48a111 Mon Sep 17 00:00:00 2001 From: Gera Shegalov Date: Thu, 30 Jan 2025 20:00:56 -0800 Subject: [PATCH] Set CI=true for complete failure reason in summary (#12044) Stop truncating failure messages in the test summary by default Fixes #12043 Signed-off-by: Gera Shegalov --- integration_tests/run_pyspark_from_build.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/integration_tests/run_pyspark_from_build.sh b/integration_tests/run_pyspark_from_build.sh index af57a6a5d3c..be06189c7f3 100755 --- a/integration_tests/run_pyspark_from_build.sh +++ b/integration_tests/run_pyspark_from_build.sh @@ -17,6 +17,10 @@ set -ex SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )" cd "$SCRIPTPATH" +# No failure message truncation in the test summary by default +# https://github.com/NVIDIA/spark-rapids/issues/12043 +export CI=${CI:-true} + if [[ $( echo ${SKIP_TESTS} | tr [:upper:] [:lower:] ) == "true" ]]; then echo "PYTHON INTEGRATION TESTS SKIPPED..."